我只需要在post url中添加“item/”前缀
我进入设置->永久链接并设置:
/item/%postname%/
对于类别和标记设置:
category
tag
但其他post\\u类型和分类法以及作者都有“item/”前缀
我尝试使用以下代码更正作者URL:
add_action(\'init\', \'ztcom_custom_rewrite_basic\');
function ztcom_custom_rewrite_basic() {
global $wp_rewrite;
$wp_rewrite->author_base = \'author\';
$wp_rewrite->author_structure = \'/\' . $wp_rewrite->author_base . \'/%author%\';
add_rewrite_rule(\'author/([^/]+)/?$\', \'index.php?author_name=$matches[1]\', \'top\');
}
但我不知道如何更正其他帖子类型和分类法
或者如何仅更改post URL结构