これがうまくいくまで、ブログページにページネーターを作成する必要がありますが、ページネーションのリンクをクリックすると、ページが見つからないため、パネルでワードプレスでアクセスできるようにする必要があるかどうかを知る必要がありますto ?page=N
関数:
    function get_pagination($the_query) {
    global $paged;
    $total_pages = $the_query->max_num_pages;
    $big = 999999999;
    if ($total_pages > 1) {
        ob_start();
        echo paginate_links( array(
            'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
            'format' => '/page/%#%',
            'current' => $paged,
            'total' => $total_pages,
            'prev_text' => '',
            'next_text' => ''
        ));
        return ob_get_clean();
    }
    return null;
}
私のブログコード
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
        // echo $paged;
        $produtos = new WP_Query(array(
            'post_type'      => 'blog',
            'posts_per_page' => 1,
            'orderby'        => 'date',
            'order'          => 'asc',
            'paged'          => $paged,
            'tax_query'      => array(
                array(
                    'taxonomy' => 'categorias',
                    'field'    => 'slug',
                    'terms'    => ACTIVE
                )
            )
        ));
        while ( $produtos->have_posts() ) : $produtos->the_post();
        //CONTENT
        endwhile;
        echo get_pagination($produtos);