您好,我将html模板转换为WordPress主题,我使用自定义字段插件进行了此操作,但是当我尝试将输出标签中的标签映射为
。我如何删除此自动生成的p标签。
我在functions.php中使用了以下代码,但没有固定
<?php
remove_filter('term_description','wpautop');
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
?>
答案 0 :(得分:0)
您可以使用Toggle wpautop插件。
这可能对您很有帮助。 谢谢
答案 1 :(得分:0)
1。登录WordPress仪表板 2.转到外观>编辑器 3.选择主题功能(functions.php)文件。 4.添加以下功能,然后单击更新更改。
//删除图像周围的P标签
函数filter_ptags_on_images($ content){return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);}
add_filter('the_content', 'filter_ptags_on_images');
仅此而已。