禁用WordPress自动段落

时间:2018-02-19 14:08:12

标签: wordpress

我一直试图删除wp auto p。我已经在我的主题的functions.php文件和任何可用的插件中尝试了remove_filter('the_content', 'wpautop');,但它们都没有实际工作。

此外,我没有使用任何可能放置这些p标签的插件,所以我很困惑。

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

<?php 

/* 
    Template Name: Text template.
*/

get_header(); ?>
<?php 
    if(have_posts()):
        while(have_posts()): the_post(); ?>
            <div class="color-1">
                <div class="content">
                    <p><?php the_content(); ?></p>
                </div> 
            </div>
        <?php endwhile;
    endif;
?>
<?php get_footer(); ?>

围绕<?php the_content(); ?>的段落就是原因。