首页 文章

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

提问于
浏览
0

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

2 回答

  • 0

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

  • 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;?>
    

相关问题