如题所述,我有产品跟新闻两个分类页面,都有分页功能,产品分页正常,而新闻里的分页点击下一页的时候却变成了产品的分页,
有玩wordpress的帮忙看看,是哪里不对,category.php 判断如下
<?php
$post = $wp_query->post;
if ( in_category(array(2,3,4)) ) {
include(TEMPLATEPATH . '/category-anli.php');
}
else if ( in_category(array(1,5,6)) )
{
include(TEMPLATEPATH . '/category-news.php');
}
else {
include(TEMPLATEPATH . '/index.php');
}
?>
其中234的分页正常,而156的分页变成了234的页面
相关问题
- Display product ACF field value in Woocommerce tra
- Adding a custom button after add to cart button in
- How to add a “active” class to a carousel first el
- Setting custom order statuses as valid for payment
- change the font size in tag cloud
相关文章
- 前端请求后端分页数据,如何在前端分页显示
- wordpress新增页面如何个性化设置
- 前端 我想知道怎样通过发ajax请求向服务器拿到数据然后分页显示 最好是点击一页就发一次请求
- select query in wordpress
- Get WooCommerce featured products in a WP_Query
- Woocommerce update shipping methods in checkout vi
- Change order status just after payment in WooComme
- Publishing or uploading failed. Error message: “Th
自己解决了,使用下面方式
<?php
/*
Template Name: 【新闻列表】模板页
*/
//将此标识放入每个分类文件的顶部,在后台即可选择不同的分类模板
?>