wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_update_php_annotation › WordPress Function

Since5.1.0
已弃用n/a
wp_update_php_annotation ( $before = '<p class="description">', $after = '</p>', $display = true )
参数: (3)
  • (string) $before Markup to output before the annotation. Default `&lt;p class=&quot;description&quot;&gt;`.
    Required: No
    默认: '<p class="description">'
  • (string) $after Markup to output after the annotation. Default `&lt;/p&gt;`.
    Required: No
    默认: '</p>'
  • (bool) $display Whether to echo or return the markup. Default `true` for echo.
    Required: No
    默认: true
返回:
  • (string|void)
定义在:
文档:
Change Log:
  • 5.2.0
  • 6.4.0

Prints the default annotation for the web host altering the "Update PHP" page URL.

This function is to be used after {@see} to display a consistent annotation if the web host has altered the default "Update PHP" page URL.


源码

function wp_update_php_annotation( $before = '<p class="description">', $after = '</p>', $display = true ) {
	$annotation = wp_get_update_php_annotation();

	if ( $annotation ) {
		if ( $display ) {
			echo $before . $annotation . $after;
		} else {
			return $before . $annotation . $after;
		}
	}
}