分页不能使用固定链接设置为/%category%/%postname%/

时间:2017-04-16 16:18:55

标签: wordpress pagination permalinks

真的需要一些帮助.. 我有自定义类别,分页不起作用。 我的永久链接设置为/%category%/%postname%/

它总是需要我到404

MyCategory /页/ 2 /

2 个答案:

答案 0 :(得分:0)

尝试设置这样的固定链接" / blog /%category%/%postname%/"

答案 1 :(得分:-1)

尝试使用此过滤器:

add_filter('request', 'remove_category_slug_url');

here

所述
function remove_category_slug_url($query_string){ 
  if ($query_string['name'] == 'page' && isset($query_string['page'])) {
    unset($query_string['name']);
  }      
  return $query_string;
}