Wordpress本机分页链接与页码没有插件需要
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress本机分页链接与页码没有插件需要相关的知识,希望对你有一定的参考价值。
Create navigation links without the need of a plugin, using paginate_links function of wordpress core.
// put it in your functions.php of your theme, enjoy :) function show_pagination_links() { global $wp_query; $page_tot = $wp_query->max_num_pages; $page_cur = get_query_var( 'paged' ); $big = 999999999; if ( $page_tot == 1 ) return; 'base' => str_replace( $big, '%#%', get_pagenum_link( $big ) ), // need an unlikely integer cause the url can contains a number 'format' => '?paged=%#%', 'total' => $page_tot, 'prev_next' => true, 'end_size' => 1, 'mid_size' => 2, 'type' => 'list' ) ); }
以上是关于Wordpress本机分页链接与页码没有插件需要的主要内容,如果未能解决你的问题,请参考以下文章
scss WordPress的分页与页码和一个很酷的sass循环。
在 Jquery carouFredSel 分页中需要下一个和最后一个链接隐藏在页码 X 之后