How can i get tag without />? 时间:2015-12-21 作者:user3173022 我看到wordpress制作标签meta、link、style、img、ecc。ecc。像theese:<img /> <meta /> <link /> <style />使用/> 在标记的末尾。我怎样才能得到像thees这样的标签?<img> <meta> <link> <style>没有/非常感谢。 1 个回复 SO网友:jgraup 捕获所有wp\\U标题内容add_action( \'wp_head\', function(){ ob_start(); }, 0); 替换结尾并输出结果add_action( \'wp_head\', function(){ $head = ob_get_clean(); echo str_replace(\'/>\', \'>\', $head); }, 99999); 文章导航