我需要修复此网页。如果您想查看代码,请附上此页。
当用户做出选择时,每个选项卡上的分页不会重置为1。这需要在他们单击选项卡时重置,如果要返回结果,分页显示为1。用户必须仍然能够通过url直接访问页面,即:http://thedemonsjumble.com/pcdev/archives/category/uncategorised/page/3/#latest
有没有人对如何着手解决这个问题有什么想法。
任何hep都将不胜感激。
亲切的问候
更改选项卡的链接:
<div class="container">
<div class="span9 first">
<ul class="tabs quicktabs-tabs quicktabs-style-nostyle">
<li >
<a style="font-size: 18px !important; font-weight: bold;" class="current" href="#latest"><?php _e( \'Latest Ads\', \'agrg\' ); ?></a>
</li>
<li>
<a style="font-size: 18px !important; font-weight: bold; color: #1aaf5d;"class="" href="#free" ><?php _e( \'Free Ads\', \'agrg\' ); ?></a>
</li>
<li>
<a style="font-size: 18px !important; font-weight: bold; color: #ff8800;" class="" href="#wanted"><?php _e( \'Wanted Ads\', \'agrg\' ); ?></a>
</li>
<li>
<a style="font-size: 18px !important; font-weight: bold; color: #ef1207;" class="" href="#forsale"><?php _e( \'For Sale Ads\', \'agrg\' ); ?></a>
</li>
<li>
<a style="font-size: 18px !important; font-weight: bold; color: #af1b6e;" class="" href="#swap"><?php _e( \'Swap Ads\', \'agrg\' ); ?></a>
</li>
</ul>
分页示例之一:
<!-- Begin wpcrown_pagination-->
<?php
if( $wp_rewrite->using_permalinks() )
$wpcrown_pagination[\'base\'] = user_trailingslashit( trailingslashit( remove_query_arg(\'s\',get_pagenum_link(1) ) ) . \'page/%#%/#latest\', \'paged\');
if (empty($x)){
} else{
if( !empty($wp_query->query_vars[\'s\']) ) {
$wpcrown_pagination[\'add_args\'] = array(\'s\'=>get_query_var(\'s\'));
} else{
echo \'<div class="pagination">\' . paginate_links($wpcrown_pagination) . \'</div>\'; }
}
$checker = 1;
?>
<!-- End wpcrown_pagination-->