Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个应该浮动到文本的图像,它确实在主题内。但是在移动主题中,源代码最终是
<p> <img /> </p> <p> TEXT </p>
代替
<p> <img /> TEXT </p>
我在哪里以及如何解决这个问题?
我是 wp 的新手(我知道 php),我正在修改其他人构建的主题,所以我不太了解。如果这有帮助,原来的主题是二十十,移动主题被称为移动包基础,所以我想我应该看看初始主题是如何工作和解析内容的,然后修改移动包一,但我不知道在哪里看
额外的段落可能是由wpautop. 您可以通过将以下内容添加到functions.php文件中来禁用它。
wpautop
functions.php
remove_filter( 'the_content', 'wpautop' ); // Remove auto formatting in full content remove_filter( 'the_excerpt', 'wpautop' ); // Remove auto formatting in post excerpts