PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

WordPress主题中添加文章列表页页码导航的PHP代码实例,_PHP教程

原创
2016-07-12 09:02:35 696浏览

WordPress主题中添加文章列表页页码导航的PHP代码实例,

WordPress 默认给主题开发者的建议是在文章列表底部提供上下页按钮,所以没有提供直接用在文章列表下的分页导航的函数。这里我提供一个比较完善的分页导航函数。

20151222161306468.png (547×103)

/**
  *WordPress 文章列表分页导航
  *http://www.endskin.com/page-navi/
*/
function Bing_get_pagenavi( $query = false, $num = false, $before = '', $options = array() ){
  global $wp_query;
  $options = wp_parse_args( $options, array(
    'pages_text' => '%CURRENT_PAGE%/%TOTAL_PAGES%',
    'current_text' => '%PAGE_NUMBER%',
    'page_text' => '%PAGE_NUMBER%',
    'first_text' => __( '« 首页', 'Bing' ),
    'last_text' => __( '尾页 »', 'Bing' ),
    'next_text' => __( '»', 'Bing' ),
    'prev_text' => '«',
    'dotright_text' => '...',
    'dotleft_text' => '...',
    'num_pages' => 5,
    'always_show' => 0,
    'num_larger_page_numbers' => 3,
    'larger_page_numbers_multiple' => 10
  ) );
  if( $wp_query->max_num_pages request;
    $numposts = $query->found_posts;
    $max_page = $query->max_num_pages;
    $posts_per_page = intval( $num );
  }else{
    $request = $wp_query->request;
    $numposts = $wp_query->found_posts;
    $max_page = $wp_query->max_num_pages;
    $posts_per_page = intval( get_query_var( 'posts_per_page' ) );
  }
  $paged = intval( get_query_var( 'paged' ) );
  if( empty( $paged ) || $paged == 0 ) $paged = 1;
  $pages_to_show = intval( $options['num_pages'] );
  $larger_page_to_show = intval( $options['num_larger_page_numbers'] );
  $larger_page_multiple = intval( $options['larger_page_numbers_multiple'] );
  $pages_to_show_minus_1 = $pages_to_show - 1;
  $half_page_start = floor( $pages_to_show_minus_1 / 2 );
  $half_page_end = ceil( $pages_to_show_minus_1 / 2 );
  $start_page = $paged - $half_page_start;
  if( $start_page  $max_page ){
    $start_page = $max_page - $pages_to_show_minus_1;
    $end_page = $max_page;
  }
  if( $start_page  $max_page ) $larger_start_page_end = $max_page;
  if( $larger_end_page_end > $max_page ) $larger_end_page_end = $max_page;
  if( $max_page > 1 || intval( $options['always_show'] ) == 1 ){
    $pages_text = str_replace( '%CURRENT_PAGE%', number_format_i18n( $paged ), $options['pages_text'] );
    $pages_text = str_replace( '%TOTAL_PAGES%', number_format_i18n( $max_page ), $pages_text);
    echo $before;
    if( !empty( $pages_text ) ) echo '' . $pages_text . '';
    if( $start_page >= 2 && $pages_to_show ' . $first_page_text . '';
    }
    if( $larger_page_to_show > 0 && $larger_start_page_start > 0 && $larger_start_page_end ' . $page_text . '';
      }
    }
    previous_posts_link( $options['prev_text'] );
    for( $i = $start_page;$i ' . $current_page_text . '';
      }else{
        $page_text = str_replace( '%PAGE_NUMBER%', number_format_i18n( $i ), $options['page_text'] );
        echo '' . $page_text . '';
      }
    }
    if( empty( $query ) ) echo '';
    next_posts_link( $options['next_text'], $max_page );
    if( empty( $query ) ) echo '';
  }
  if( $larger_page_to_show > 0 && $larger_end_page_start ' . $page_text . '';
    }
  }
  if( $end_page ' . $last_page_text . '';
  }
  echo $after;
}

然后在需要使用分页导航的地方添加下边的代码:


您可能感兴趣的文章:

  • 解析WordPress中函数钩子hook的作用及基本用法
  • WordPress中使主题支持小工具以及添加插件启用函数
  • 详解WordPress中简码格式标签编写的基本方法

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1084562.htmlTechArticleWordPress主题中添加文章列表页页码导航的PHP代码实例, WordPress 默认给主题开发者的建议是在文章列表底部提供上下页按钮,所以没有提供...
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。