如果要更改所有页面的永久链接结构(即page
类型),您可以使用WP_Rewrite::$page_structure
类似这样的属性:
add_action( \'init\', \'wpse_382911\' );
function wpse_382911() {
global $wp_rewrite;
$wp_rewrite->page_structure = \'home/%pagename%\';
}
不要忘记刷新重写规则-只需访问permalink设置管理页面(
wp-admin
→ 设置→ Permalinks)。
但是,如果您只想为特定页面使用这种结构,那么使用父子特性创建home
翻页并制作faq
和about
作为的子级的页面home
页