php 获取CPT存档的所有帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取CPT存档的所有帖子相关的知识,希望对你有一定的参考价值。

// pre_get_posts to get all the posts por the CPT Archive
add_action( 'pre_get_posts', 'pre_get_posts_archive_custom_cpt' );

function pre_get_posts_archive_custom_cpt( $query ) {
    if( is_admin() ) {
        return;
    }

    if ( $query->is_post_type_archive( 'custom_cpt_name' ) && $query->is_main_query() ) {
        $query->set( 'posts_per_page', -1 );   
    }
}

以上是关于php 获取CPT存档的所有帖子的主要内容,如果未能解决你的问题,请参考以下文章