Php 多站点wordpress搜索循环和分页?

Php 多站点wordpress搜索循环和分页?,php,wordpress,search,Php,Wordpress,Search,好的,我有一个wordpress自定义循环,在3个博客之间循环,并返回如下结果: <?php $posts_per_page = get_option('posts_per_page'); $searchfor = get_search_query(); // Get the search query for display in a headline $query_string=esc_

好的,我有一个wordpress自定义循环,在3个博客之间循环,并返回如下结果:

<?php
                 $posts_per_page = get_option('posts_per_page');
                 $searchfor = get_search_query(); // Get the search query for display in a headline
                 $query_string=esc_attr($query_string); // Escaping search queries to eliminate potential MySQL-injections
                 $blogs = get_blog_list( 0,'all' );
                 $notfound = true;
                 $current_blogid=get_current_blog_id();
                 $blogs_ordered = array($current_blogid);

        foreach ( $blogs as $blog ):
                if ($blog['blog_id']!=$blogs_ordered['0']){
                        $blogs_ordered[]=$blog['blog_id'];
                }
        endforeach;

        foreach ( $blogs_ordered as $blogid ):
                switch_to_blog($blogid);
               $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
                              $search = new WP_Query($query_string.'&posts_per_page=1&paged='.$paged);               

                  if ($search->found_posts>0) {
                         foreach ( $search->posts as $post ) {

                             POST CONTENT ECHOS HERE!!!

                                <?php
                                $post = $postx;
                                wp_reset_query();
                            }
                        }
                     wp_reset_query();

        endforeach;
           $page_links_total =  $search->max_num_pages; 
                if ($page_links_total>1) :


                ?>

        <div class="navigation">
            <div class="nav">
                        <?

    $search->query_vars['paged'] > 1 ? $current = $search->query_vars['paged'] : $current = 1;
    $pagination_args = array(
        'base' => @add_query_arg('paged','%#%'),
        'format' => '',
        'total' => $page_links_total,
        'current' => $current,
        'show_all' => false,
        'end_size' => 0,
        'mid_size' => 0,
    );
    if ( $wp_rewrite->using_permalinks() ) $pagination['base'] = user_trailingslashit( trailingslashit( remove_query_arg( 's', get_pagenum_link( 1 ) ) ) . 'paged/%#%/', 'paged' );
    if ( !empty($wp_query->query_vars['s']) ) $pagination['add_args'] = array( 's' => get_query_var( 's' ) );  

    $prev = get_previous_posts_link('< FORRIGE');
    $next = get_next_posts_link('NESTE >');

$links = paginate_links($pagination_args);
    $links = "
            <div class='left'>
                $prev    
            </div>
            <div class='class'> 
                $next
            </div>
    ". $links;
    echo $links;
            ?>
            </div>
            </div>

        <div class="navigation">

            <div class="nav">
                <div class="left">
                        <a href="<?php echo get_site_url(1) . "/?s=" . get_search_query() . '&paged=' . ($current - 1); ?>">< FORRIGE</a>
                </div>
            <div class='center'>Side <?php echo "$current/$page_links_total"; ?></div> 
                <div class="right">
                        <a href="<?php echo get_bloginfo('home') . "/page/" . ($current + 1) . "/"; ?>">NESTE ></a>
                        <?php echo the_search_query(); ?>
                        <a href="<?php echo get_site_url(1) . "/?s=" . the_search_query() . '&paged=' . ($current + 1); ?>">NESTE ></a>
                </div>
            </div>
        </div>
        <?php
        endif; 
?>
致:

它确实跳转到了正确的页面,而下一个上一个链接就是不起作用,我尝试过关闭永久链接我尝试过不同的东西(一些仍然在代码中) 请帮帮我,这真让我抓狂! 问候
Chris

我必须编写一个custm paged变量,如果需要,您可以在这里找到整个工作循环:

 $search = new WP_Query($query_string.'&posts_per_page=1&paged='.$paged);
  $search = new WP_Query($query_string.'&posts_per_page=1&paged=10');