个性化阅读
专注于IT技术分析

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

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


#1


只需将’post_type’=>’home-post’替换为’post_type’=>’post’或删除该行, 它只会提取你的常规帖子


#2


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;?>
赞(0)
未经允许不得转载:srcmini » 从主循环wordpress中排除自定义帖子类型

评论 抢沙发

评论前必须登录!