我正在尝试根据自定义父/子分类法为自定义帖子类型设置自定义永久链接结构。我已经设法实现了这个目标,但我打破了页面和帖子的永久链接结构。
我已完成以下任务:
mysite.com/taxonomy_parent/taxonomy_child/postname
换句话说,我删除了分类标本,URL显示正确的层次结构顺序。首先,我在注册自定义分类法和自定义post-type时设置'rewrite'arg:
用于自定义分类:
'rewrite' => array( 'slug' => '', 'with_front' => false, 'hierarchical' => true ),
的帖子类型:
'rewrite' => array( 'slug' => '%mytaxonomy%', 'with_front' => false, 'hierarchical' => true ),
然后我添加了以下代码以获得支持以在URL中显示父/子分类。
add_filter('rewrite_rules_array', 'mmp_rewrite_rules');
function mmp_rewrite_rules($rules) {
$newRules = array();
$newRules['(.+)/(.+)/(.+)/?$'] = 'index.php?myposttype=$matches[3]';
$newRules['(.+)/?$'] = 'index.php?mytaxonomy=$matches[1]';
return array_merge($newRules, $rules);
}
function filter_post_type_link($link, $post)
{
if ($post->post_type != 'myposttype')
return $link;
if ($cats = get_the_terms($post->ID, 'mytaxonomy'))
{
$link = str_replace('%mytaxonomy%', get_taxonomy_parents(array_pop($cats)->term_id, 'mytaxonomy', false, '/', true), $link);
}
return $link;
}
add_filter('post_type_link', 'filter_post_type_link', 10, 2);
function get_taxonomy_parents($id, $taxonomy, $link = false, $separator = '/', $nicename = false, $visited = array()) {
$chain = '';
$parent = &get_term($id, $taxonomy);
if (is_wp_error($parent)) {
return $parent;
}
if ($nicename)
$name = $parent -> slug;
else
$name = $parent -> name;
if ($parent -> parent && ($parent -> parent != $parent -> term_id) && !in_array($parent -> parent, $visited)) {
$visited[] = $parent -> parent;
$chain .= get_taxonomy_parents($parent -> parent, $taxonomy, $link, $separator, $nicename, $visited);
}
if ($link) {
// nothing, can't get this working :(
} else
$chain .= $name . $separator;
return $chain;
}
这很有效,但与帖子和页面的自定义永久链接存在冲突。我也需要配置它。实际上,我需要“mysite.com/blog/category/postname”和“mysite.com/pagename”。像设置“/%category%/%postname%/”这样的自定义永久链接一样容易,但是当我在我的functions.php中设置了我所解释的必要的当前配置时,会返回404错误页面
我认为rewrite_rules存在问题,但不知道如何修复它或如何设置新规则以支持我的自定义post_type /自定义分类永久链接结构,同时帖子和页面的自定义永久链接结构正常工作。