从主循环wordpress中排除自定义帖子类型

时间:2016-01-11 20:29:13

标签: wordpress wordpress-theming

我正在使用wordpress并设置了几个自定义帖子类型。我需要知道如何从主要外观中排除这些内容,以便自定义帖子类型不会显示在博客中。

2 个答案:

答案 0 :(得分:0)

只需替换'post_type'=> 'home-post'与'post_type'=> '发布'或删除该行,它只会拉你的常规帖子

答案 1 :(得分:0)

this code use for fetch post type data
<?php
$args = array('post_type' => 'post','posts_per_page' => -1);

$loop = new WP_Query( $args );

while ( $loop->have_posts() ) : $loop->the_post();
?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php endwhile;?>