所以我使用自定义循环在某些页面上输出自定义帖子类型。
它工作正常,抓取内容等,但它不会将段落包装在p标签中。 我对WP比较陌生,好像我之前刚做过前端的东西,所以请原谅我,如果我在这里犯了一个小错误。
<div class="home-grid-1">
<?php
query_posts(array(
'post_type' => 'Headerhome',
'showposts' => 1
) );
?>
<?php while (have_posts()) : the_post(); ?>
<?php echo get_the_content(); ?>
<?php endwhile; wp_reset_query();?>
</div> <!-- end home-grid-1 -->
答案 0 :(得分:1)
使用echo get_the_content()
代替the_content()
,而while (have_posts()) : the_post();
the_content();
endwhile;
通常没有应用过滤器,使用{{1}}会自动回显帖子内容,并应用过滤器。
{{1}}
答案 1 :(得分:0)
您需要的过滤器是一个双线换行符转换为<p>
和</p>
。它被称为wpaup,并解释为here