在WordPress档案显示所有帖子

vnjpjtjt  于 2022-11-22  发布在  WordPress
关注(0)|答案(1)|浏览(139)

我需要能够显示WordPress存档页面上的所有帖子,但我不知道如何实现。我尝试使用以下代码,但它不工作。

add_action('pre_get_posts', 'all_posts');
function all_posts( $query ) {
if ($query->is_category()){
$query->set( 'posts_per_page' => -1, true );
}}

我试着把它改成这样:

add_action('pre_get_posts', 'all_posts');
function all_posts( $query ) {
if ($query->is_category()){
$query->set( '-1' , true );
}}
qv7cva1a

qv7cva1a1#

试试这个

add_action('pre_get_posts', 'all_posts');
function all_posts( $query ) {
    if ($query->is_category()){
        $query->set( 'posts_per_page' , -1 );
        $query->set( 'post_type', 'post' );
    }
}

相关问题