_cleanup_header_comment

函数
_cleanup_header_comment ( $str )
Access
Private
参数
  • (string) $str Header comment to clean up.
    Required:
返回值
  • (string)
相关
  • https://core.trac.wordpress.org/ticket/8497
定义位置
相关方法
clean_comment_cachehave_comments_cleanup_image_add_captioncheck_commentwp_insert_comment
引入
2.8.0
弃用
-

cleanup_header_comment: 这个函数用来从WordPress文档的头部删除生成器元标签。它接受一个包含文档HTML的字符串,并返回删除了生成器元标签的最新HTML。

剥离WP使用的文件头中的close comment和close php标签。

function _cleanup_header_comment( $str ) {
	return trim( preg_replace( '/s*(?:*/|?>).*/', '', $str ) );
}

常见问题

FAQs
查看更多 >