• Имеется такой код category.php:

    $all_posts = new WP_Query();
    $args = array(
    	'category_name'  => 'blog',
    	'post_type' => 'any',
    	'posts_per_page' => 2,
    	'paged' => $paged
    );
    $all_posts->query($args);
    $max_page = $all_posts->max_num_pages;
    if ( $all_posts->have_posts() ) :
    while ( $all_posts->have_posts() ) : $all_posts->the_post();
    // do action
    endwhile;
    echo paginate_links( array(
        'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
        'format' => '?paged=%#%',
        'current' => max( 1, get_query_var('paged') ),
        'total' => $max_page,
        'prev_text'    => '<',
        'next_text'    => '&gt'
    ) );
    endif;

    Всё выводится нормально, но при переходе на следующую страницу выдает 404.
    В чем проблема?

Просмотр 9 ответов — с 1 по 9 (всего 9)
Просмотр 9 ответов — с 1 по 9 (всего 9)
  • Тема «WP_Query и pagination» закрыта для новых ответов.