改变custom-post-type
在下面的CPT名称中,slug和post_type=
在查询变量中。访问永久链接设置页面刷新重写规则。您还可以将其放入插件并刷新插件激活规则。
function wpa83047_author_rewrite_rule(){
add_rewrite_rule(
\'^custom-post-type/author/([^/]+)/?$\',
\'index.php?author_name=$matches[1]&post_type=custom-post-type\',
\'top\'
);
}
add_action( \'init\', \'wpa83047_author_rewrite_rule\' );