每个类别Wordpress的子页面

时间:2017-04-22 09:58:49

标签: wordpress

我在我的wordpress主题模板页面中创建了一个名为popular.php的页面,其中我按人气排序。它适用于每个帖子,但我不知道如何为类别。

我想要这样的事情:

sitename.com/popular-post - 工作正常

sitename.com/category-name/popular-post - 我不知道如何为每个类别制作热门网页儿童?

流行循环适用于此args:

<?php $current_category_ID =  getCurrentCatID(); ?>
 <?php $args = array(
      'posts_per_page' => 60,
      'cat' => $current_category_ID,
      'meta_key' => 'views',
      'orderby' => 'meta_value_num',
      'order' => 'DESC',
 ); ?>

 <?php query_posts($args); ?>

只有我不知道让它成为孩子的类别?

2 个答案:

答案 0 :(得分:0)

检查固定链接设置&amp;像这样更新自定义结构

/%category%/%postname%/

答案 1 :(得分:0)

https://codex.wordpress.org/Category_Templates

在codex中查看此页面。它解释了如何为模板文件命名类别。

例如,如果您的主题中有一个名为category.php的文件,该模板将用于显示类别页面。