我为自定义帖子类型创建父子关系。
通用:www.example.com/parent/parent_post
示例:www.example.com/projects/project-one
在上述URL中,parent是自定义帖子类型,parent帖子是其单个帖子。 我可以将所有帖子和单个帖子分别显示为archive-parent.php和single-parent.php。
如前所述,我创建了父子关系,并使用存储“ post_parent”作为父ID的子帖子。
通用:www.example.com/child/parent_post/child_post
样品: www.example.com/project_article/project-one/first-article
对于特定的子帖子,URL将如上。
下面的代码用于获取特定的子帖子。它工作正常。
function my_add_rewrite_rules() {
add_rewrite_tag('%child%', '([^/]+)', 'child=');
add_permastruct('child', 'child/%parent%/%child%', false);
add_rewrite_rule('^child/([^/]+)/([^/]+)/?','index.php?child=$matches[2]','top');
}
add_action( 'init', 'my_add_rewrite_rules' );
function my_permalinks($permalink, $post, $leavename) {
$post_id = $post->ID;
if($post->post_type != 'child' || empty($permalink) || in_array($post->post_status, array('draft', 'pending', 'auto-draft')))
return $permalink;
$parent = $post->post_parent;
$parent_post = get_post( $parent );
$permalink = str_replace('%parent%', $parent_post->post_name, $permalink);
return $permalink;
}
add_filter('post_type_link', 'my_permalinks', 10, 3);
通用:www.example.com/child/parent_post
示例:www.example.com/project_article/project-one
现在,我希望所有子帖子都带有父帖子,如上面的URL所示。
我是第一次接触单词,请指导。
答案 0 :(得分:0)
假设parent
是父级自定义帖子类型,child
是子级自定义帖子类型,希望您需要像http://www.example.com/parent/parent-post/child/child-post
这样的子帖子URL,而不是http://www.example.com/child/parent-post/child-post
。
将您的my_add_rewrite_rules()
函数更改为以下内容。
function my_add_rewrite_rules() {
add_rewrite_tag('%child%', '([^/]+)', 'child=');
add_permastruct('child', '/parent/%parent%/child/%child%', false);
add_rewrite_rule('^parent/([^/]+)/child/([^/]+)/?','index.php?child=$matches[2]','top');
}
add_action( 'init', 'my_add_rewrite_rules' );
更新后,不要忘记通过“设置>永久链接” 刷新永久链接。