我正在尝试为基于自定义父/子分类的自定义帖子类型设置自定义永久链接结构。我已经设法实现了这一目标,但我打破了页面和帖子的永久链接结构。
我已经完成了以下操作:
mysite.com/taxonomy_parent/taxonomy_child/postname
换句话说,我已经删除了分类 slug 并且 URL 显示了正确的层次顺序。首先,我在注册自定义分类和自定义帖子类型时设置了“重写”参数:
对于自定义分类:
'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/自定义分类永久链接结构,同时帖子和页面的自定义永久链接结构正常工作。