0

我有一个名为教程的自定义帖子类型。

我可以访问 mysite.com/tutorials 并获取所有教程的列表。

我还使用以下代码创建了一个名为 tutorial_categories 的自定义分类:

register_taxonomy(
        'tutorial_categories',
        'tutorials',
        array(
            'labels' => array(
                'name' => 'Tutorial Categories',
                'add_new_item' => 'Add New Tutorial Category',
                'new_item_name' => "New Tutorial Category"
            ),
            'show_ui' => true,
            'show_tagcloud' => false,
            'hierarchical' => true,
            'hasArchive' => true
        )
    );

我认为这是允许我这样做的插件的一部分。

如何为 tutorial_category 创建类别页面,所以如果有人去:

mysite.com/tutorials/php/

他们将获得包含 PHP 自定义分类法的教程列表(自定义帖子类型)。

任何帮助将不胜感激,因为我已经做了一些谷歌搜索,但我似乎无法找到这个问题的答案。

谢谢!

莱昂。

4

2 回答 2

0

没有尝试过,但看起来很有希望。

http://wp-types.com/documentation/user-guides/creating-wordpress-custom-taxonomy-archives/

于 2013-10-04T02:48:54.533 回答
0

首先,制作一个新的页面模板。

最简单的方法是复制您当前的 page.php 文件并将其保存为:tutorials-page.php。

在顶部包括:

<?php 
/*
Template Name: Tutorials Page
*/
?>

然后将新 tutorials-page.php 文件中的循环替换为以下自定义循环:

<?php $args=array( 
'post_type' => 'tutorials', //set the post_type to use.
'taxonomy' => 'tutorial_categories', // set the taxonomy to use.
'term' => 'php', //set which term to use. 
'posts_per_page' => 10  // how many posts or comment out for all.       
);

$tutorialsloop = new WP_Query($args);
if($tutorialsloop->have_posts()) : while($tutorialsloop->have_posts()) :
$tutorialsloop->the_post();

get_template_part( 'content' ); //or whatever method your theme uses for displaying content. 

endwhile; endif; //end the custom post_type loop

?>

然后创建一个新页面并将这个新页面模板分配给它。

于 2013-10-05T00:24:26.670 回答