我有这个循环代码
//I will use WP_Query class instance
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array( 'posts_per_page' => 2, 'cat' => '863', 'paged' => $paged);
//Set up a counter
$counter = 0;
//Preparing the Loop
$query = new WP_Query( $args );
//In while loop counter increments by one $counter++
if( $query->have_posts() ) : while( $query->have_posts() ) : $query->the_post(); $counter++;
//We are in loop so we can check if counter is odd or even
if( $counter % 2 == 0 ) : //It's even
the_title(); //Echo the title of post
else: //It's odd
the_title();
endif;
endwhile; wp_reset_postdata(); pagination(); endif;
分页不起作用。
我插入了分页();到不同的位置,并且没有显示分页。
我需要在function.php文件中添加一些内容吗?
也许您只需要更改循环代码?
他们想要减少的效果