我需要能够显示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 );
}}
1条答案
按热度按时间qv7cva1a1#
试试这个