Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wordpress页面赢得';翻页_Wordpress_Pagination - Fatal编程技术网

Wordpress页面赢得';翻页

Wordpress页面赢得';翻页,wordpress,pagination,Wordpress,Pagination,好吧,我正在为这件事扯头发,我知道这件事非常简单,我一直盯着我的脸看,但我就是看不见。本质上,我的分页不起作用。我使用插件wp_pagenavi(这不是已经检查过的问题),它为我提供了分页中每个页面的链接列表。这一切都很好,事实上所有的代码都做了它应该做的事情。问题是,当我单击分页链接(如“2”或“3”)时,它试图转到相应的分页,即www.yousitehere.com/somepage/page/2,但站点只是重新加载当前页面,而没有/page/2 我认为页面可能没有意识到需要分页,因此忽略了

好吧,我正在为这件事扯头发,我知道这件事非常简单,我一直盯着我的脸看,但我就是看不见。本质上,我的分页不起作用。我使用插件wp_pagenavi(这不是已经检查过的问题),它为我提供了分页中每个页面的链接列表。这一切都很好,事实上所有的代码都做了它应该做的事情。问题是,当我单击分页链接(如“2”或“3”)时,它试图转到相应的分页,即www.yousitehere.com/somepage/page/2,但站点只是重新加载当前页面,而没有/page/2

我认为页面可能没有意识到需要分页,因此忽略了/page的所有实例,或者在页面加载之前有什么东西正在重置分页。(这不是重置查询)

这是一个Wordpress网站。不幸的是,我无法显示该网站的链接,这使你更难,希望有人有一个建议

这是我的密码

<div id="content" class="clearfix">
<div id="main" class="col960 left first clearfix" role="cont_detail">
<?php if (have_posts()) : while (have_posts()) : the_post(); 
    $id = get_the_ID();
    $array = metadata($id);
?>
    <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="cont_detail" >
        <header>
            <div id="header_bg_top"></div>
            <div id="header_bg">
                <?php if($array['custom_facebook'] !="" && $array['custom_twitter'] !="" && $array['custom_linkedin'] != ""&& $array['custom_website'] != "" && $array['custom_blog'] != "" && $array['custom_email'] != ""){?>
                <div class="social_link_container">
                    <div class="width">
                        <?php if(isset($array['custom_facebook']) && $array['custom_facebook'] !=""){?>
                        <a href="http://www.facebook.com/<?php echo $array['custom_facebook'];?>" target="_new"><img src="<?php echo get_template_directory_uri(); ?>/images/author-facebook.png"></a>
                        <?php  }
                        if(isset($array['custom_twitter']) && $array['custom_twitter'] !=""){?>
                        <a href="http://www.twitter.com/<?php echo $array['custom_twitter'];?>" target="_new"><img src="<?php echo get_template_directory_uri(); ?>/images/author-twitter.png"></a>
                        <?php  }
                        if(isset($array['custom_linkedin']) && $array['custom_linkedin'] !=""){?>
                        <a href="http://www.linkedin.com/<?php echo $array['custom_linkedin'];?>" target="_new"><img src="<?php echo get_template_directory_uri(); ?>/images/author-in.png"></a>
                        <?php  }
                        if(isset($array['custom_website']) && $array['custom_website'] !=""){?>
                        <a href="http://<?php echo $array['custom_website'];?>" target="_new"><img src="<?php echo get_template_directory_uri(); ?>/images/author-web.png"></a>
                        <?php  }
                        if(isset($array['custom_blog']) && $array['custom_blog'] !=""){?>
                        <a href="http://<?php echo $array['custom_blog'];?>" target="_new"><img src="<?php echo get_template_directory_uri(); ?>/images/author-blog.png"></a>
                        <?php  }
                        if(isset($array['custom_email']) && $array['custom_email'] !=""){?>
                        <a href="mailto:<?php echo $array['custom_email'];?>"><img src="<?php echo get_template_directory_uri(); ?>/images/author-email.png"></a><?php  }?>
                    </div>
                </div>
                <?php } ?>
                <h1 class="cont_detail_title" itemprop="headline"><?php the_title(); ?></h1>
                <?php if(isset($array['custom_description']) && $array['custom_description'] !="")
                {
                    ?>
                    <span class="title_description"><?php echo $array['custom_description']; ?></span>
                <?php
                }
                ?>
            </div><!-- header-bg -->
        </header> <!-- end article header -->
        <section>
            <div class="content-left">
                <?php if(isset($array['featured_thumb']) && $array['featured_thumb'] !="")
                    {
                    ?>
                    <div class="cont_detail_image">
                        <?php print_thumbnail($array['featured_thumb'], "medium");?>
                    </div>
                <?php  
                }
                ?>
            </div>
            <div class="content-right">
                <?php the_content(); ?>
            </div>
        </section> <!-- end article section -->

    </article> <!-- end article -->
    <?php endwhile; ?>          
    <?php else : ?>
        <article id="post-not-found">
            <header>
                <h1>Not Found</h1>
            </header>
            <section class="post_content">
                <p>Sorry, but the requested resource was not found on this site.</p>
            </section>
            <footer>    
            </footer>
        </article>
    <?php endif;        
    wp_reset_query();
//Sort queries, most viewed, alphabetical, date         

    echo '<section><div id="content_bg" class="group">';
    $row_num = 1;            
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;                     
    if( $_GET['sort'] == 'date' ) {
        $sortOrder = getSortOrder( $_GET['dsort_order'] );
        $meta_queries[] = array(                
            'key' => 'custom_authorid',
            'value' => $post->ID,
            'compare' => 'LIKE',
            );
            query_posts(array(
            'post__not_in' => array($post->ID),
            'post_type' => 'post',
            'meta_query' => $meta_queries,
            'order'=>$sortOrder,
            'orderby'=> 'date',
            'posts_per_page' => 9,
            'paged' => $paged
            ));
    }
    elseif( $_GET['sort'] == 'alpha' ) {
        $sortOrder = getSortOrder( $_GET['asort_order'] );
        $meta_queries[] = array(                
            'key' => 'custom_authorid',
            'value' => $post->ID,
            'compare' => 'LIKE',
            );
            query_posts(array(
            'post__not_in' => array($post->ID),
            'post_type' => 'post',
            'meta_query' => $meta_queries,
            'order'=>$sortOrder,
            'orderby'=> 'title',
            // adding posts_per_page, set to 9 might be different then global preference
            'posts_per_page' => 9,
            'paged' => $paged
            ));
        }
    elseif( $_GET['sort'] == 'mviewed' ) {

        }
    else{   
        $meta_queries[] = array(                                                
            'key' => 'custom_authorid',
            'value' => $post->ID,
            'compare' => 'LIKE',
            );
            query_posts(array(
            'post__not_in' => array($post->ID),
            'post_type' => 'post',
            'posts_per_page' => 9,
            'meta_query' => $meta_queries,
            'paged' => $paged
            ));
        }

        ?>
    <div class="paginate_nav">
        <?php wp_pagenavi(); // use the page navi function ?>
        <div class="sort_nav">
            <?php contrPaginationLinks( $sortOrder ) ?>
        </div><!--sort_nav-->
    </div><!--paginate_nav-->       
    <?php 
        if( $_GET['sort'] == 'mviewed' ) {

        }
        else{ 
            if (have_posts()) : while (have_posts()) : the_post();                                          
                $item = metadata($post->ID);
                $containsVideos = false;
                foreach ($item['cat'] as $value) {
                    if (strpos($value->cat_name,'Videos') !== false) {
                        $containsVideos = true;
                    }
                }
             ?>
                <div class="story-container" >
                    <div class="story_left">
                        <div class="story_image">
                            <input type="hidden" name="vidID" value="<?php echo $item['media_link']; ?>" />
                            <div class="about_latest_image <?php echo $item['media_link']; ?>">
                                <a href="<?php echo $item['link']; ?>">
                                        <?php
                                        print_thumbnail($item['featured_thumb'],"thumbnail", $item['youtube_link'], $item['vimeo_link'], $item['media_link']);      
                                        ?>
                                    <?php if($containsVideos == true){echo '<span class="videoIndicator"></span>';} ?>
                                </a>        
                            </div>
                        </div>      
                        <?php if($_GET['sort'] == 'date'){ ?>
                            <div class="story_view">
                                <?php echo $item['date']; ?>
                            </div>
                            <?php } ?>
                    </div>
                <div class="story_title">
                    <a href="<?php echo $item['link']; ?>" title="<?php echo $item['title']; ?>"> 
                        <span class="story_title"><?php echo $item['title']; ?></span>
                    </a>
                </div>
                <?php if(isset($item['custom_description']) && $item['custom_description'] !="") {
                ?>
                    <div class="story_description"><?php echo $item['custom_description']; ?></div>
                <?php  
                }
                ?>
            <div class="story_content"></div>                         
        </div>
        <?php endwhile; ?>  
        <?php else : ?>
            <h1><?php _e("No Posts Yet", "hooplahatheme"); ?></h1>
            <p><?php _e("Sorry, What you were looking for is not here.", "hooplahatheme"); ?></p>
        <?php endif; 
        } // end display else default
        echo '</div></section>';
        //
        // reset query after display is done            
        //
        wp_reset_query();
        ?>
        <footer>
        </footer> <!-- end article footer -->
</div> <!-- end #main -->    


更新


事实证明,发生了302重定向,这就是我下一步要查找的内容。

因此,对于任何有类似问题的人,答案都很简单。默认情况下,您不能在wordpress中对单个帖子页面进行分页。它只会重定向回页面的根URL。要停止此操作,需要将其添加到themes functions.php中

add_filter('redirect_canonical','pif_disable_redirect_canonical');

function pif_disable_redirect_canonical($redirect_url) {


if( is_singular() && in_category('PLACE CAT ID HERE') ) {
    $redirect_url = false;
}
return $redirect_url;
}

有关这方面的更多信息,请参见此处

克里斯托弗的答案可能适用于大多数人

但是..

如果要停止重定向,使其不影响
/pagename/page/1
,这将有助于:

add_filter('redirect_canonical', 'my_redirect_canonical', 10, 2); 
function my_redirect_canonical($redirect_url, $requested_url) { 
  $do_redirect = true; 
  if(preg_match('/page/',$requested_url)){
    $do_redirect = false; 
  }
  return $do_redirect; 
} 

找到。

您可以共享到live site的链接吗..这样我们就可以检查问题..这可能对使
/pagename/page/2
工作有效,但对
/pagename/page/1
无效(我知道这是一个奇怪的设置)