我想要做的是允许网站显示基于日期的条款档案,但我一点运气都没有。
我希望它如何工作:
website.com/taxonomy/term/
工作,而且很棒。
website.com/taxonomy/term/2012
不......它实际上是404s。
website.com/taxonomy/term/2012/11
也没有。
我需要一些帮助来创建一些重写规则,这些规则将获取 url 并修改要添加的查询year={year}&monthnum={$month}
(或者无论如何魔法有效),并且还重定向回taxonomy-taxonomy.php
模板,因为这似乎中断了。
请问,我会尽我所能帮助澄清:)
分类注册(从项目复制):
register_taxonomy ( 'age-limit', array('event'), array(
'hierarchical' => false,
'labels' => array (
'name' => _x( 'Age limit', 'taxonomy general name' ),
'singular_name' => _x( 'Age limit', 'taxonomy singular name' ),
'search_items' => __( 'Search Age limits' ),
'all_items' => __( 'All Age limits' ),
'edit_item' => __( 'Edit Age limit' ),
'update_item' => __( 'Update Age limit' ),
'add_new_item' => __( 'Add New Age limit' ),
'new_item_name' => __( 'New Age limit' ),
'menu_name' => __( 'Age limits' ),
),
'show_ui' => true,
'query_var' => true,
'rewrite' => array('slug' => 'age-limit'),
));