我已为具有以下内容的页面启用了类别框:
// Add to the admin_init hook of your theme functions.php file
add_action( \'admin_init\', \'page_categories\' );
function page_categories() {
// Add tag metabox to page
register_taxonomy_for_object_type( \'post_tag\', \'page\' );
// Add category metabox to page
register_taxonomy_for_object_type( \'category\', \'page\' );
}
现在我想要一个URl结构:
domain.com/%category%/%pagename%/
我想这必须是一条重写规则,但我对正则表达式不是很在行。