【分页功能】
« 前一页
后一页 »
~~~
previous_posts_link();
next_posts_link();
~~~
« 前一页 1 2 3 4 下一页 »
`echo paginate_links();`
![](https://box.kancloud.cn/594136843ca8963f90964a170247a429_1556x906.png)
或者使用分页插件:
WP-PageNavi,下载链接:
https://wordpress.org/plugins/wp-pagenavi/
【自定义搜索分页】
~~~
<?php
$current_page = max(1, get_query_var('paged')); //当前第几页
// //查询参数
// $args = array_filter(array(
// 'orderby' => 'title',
// 'order' => 'ASC',
// 'ignore_sticky_posts' => 1 ,
// 'posts_per_page' => 9,
// 'paged' => $current_page, //当前页
// ));
//开始查询
$query = new WP_Query('orderby="title"&order="ASC"&ignore_sticky_posts=1&posts_per_page=12&paged='.$current_page);
$total_pages = $query->max_num_pages; //总共多少页
while ($query->have_posts()):
$query->the_post();
?>
<div class="col-md-4 col-sm-6 fadeIn wow box-foreach1" data-wow-duration="1.3s">
<a href="<?php the_permalink(); ?>" class="project-item">
<div class="gallery-image">
<?php the_post_thumbnail('product-thumbnails'); ?>
</div>
<div class="info info-chain">
<div class="h4 title"><?php the_title(); ?></div>
<p class="description"><?php the_time('Y年n月j日, G:i:s'); ?></p>
<div class="social">
<i class="fa fa-fw fa-eye"></i> 12
</div>
</div>
</a>
</div>
<?php
endwhile;
//输出分页
echo paginate_links( array(
'prev_text' => __( '上一页', 'YChinaTours' ),
'next_text' => __( '下一页', 'YChinaTours' ),
'screen_reader_text' => null,
'total' => $total_pages, //总页数
'current' => $current_page, //当前页数
) );
?>
~~~
参考:
https://www.wordpressleaf.com/2018_2258.html
- WordPress平台的网站开发
- 电商主题开发
- WooCommerce主题开发优化部分
- 首页开发
- WooCommerce
- 判断用户是否登录
- WordPress Menu
- WooCommerce PayPal Checkout Gateway
- 页面和文章
- 调用产品和文章
- 判断属于哪个页面
- 相关文章
- 消除文章分享按钮集底部的文字
- wordpress主题模板和主题开发
- wordpress主题准备
- wordpress主题文件结构
- 豪源主题
- WooCommerce SEO
- 插件开发
- wordpress二次开发
- theme基本显示
- menu调用
- 分拆为header.php和footer.php
- 页面、文章样式选择显示
- 面包屑导航 Breadcrumb
- 特色图
- 阅读次数统计
- 分页功能
- Advanced Custom Fields
- Custom Post Type UI
- post type
- 小工具
- 小工具调用
- shortcode
- 文章循环输出
- 标题和文章限制字数输出显示
- WordPress主題theme1开发
- wordpress搭建多站点
- wordpress常用函數
- wordpress循环代码
- Woocommerce
- Woocommerce支持
- WordPress插件开发
- wordpress会员插件
- WordPress插件使用
- WordPress插件集
- WordPress的核心
- Wordpress原理
- Wordpress要点
- WordPress网站搬家
- WPML
- 服务器
- Cloud 9
- test
- 网站