wp_update_php_annotation

函数
wp_update_php_annotation ( $before = '<p class="description">', $after = '</p>' )
参数
  • (string) $before Markup to output before the annotation. Default `<p class="description">`.
    Required:
    Default: '<p class="description">'
  • (string) $after Markup to output after the annotation. Default `</p>`.
    Required:
    Default: '</p>'
定义位置
相关方法
wp_get_update_php_annotationwp_update_postwp_update_pluginupdate_optionwp_update_link
引入
5.1.0
弃用
-

wp_update_php_annotation: 这个函数用来更新用于记录WordPress代码的PHP docblock注释。它通常被开发人员用来添加或更新WordPress中的函数、类或方法的文档。

打印虚拟主机改变”Update PHP” 页面URL时的默认注释。

这个函数要在{@see}之后使用,以便在虚拟主机改变了默认的”Update PHP”页面URL时显示一个一致的注释。

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

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

常见问题

FAQs
查看更多 >