您可以更改自定义帖子类型的SLUG:
$post_args = array(
\'labels\' => $post_labels,
\'public\' => true,
\'publicly_queryable\' => true,
\'show_ui\' => true,
\'show_in_menu\' => true,
\'query_var\' => true,
\'rewrite\' => array(\'slug\'=>\'country\',\'with_front\'=>false),
\'capability_type\' => \'post\',
\'hierarchical\' => false,
\'supports\' => array(\'title\',\'thumbnail\', \'editor\' ),
\'has_archive\' => false,
\'menu_icon\' => get_stylesheet_directory_uri() . \'icon.png\',
);
register_post_type(\'offres\',$post_args);
因此,请搜索此行:
\'rewrite\' => false,
并替换为:
\'rewrite\' => array(\'slug\'=>\'country\',\'with_front\'=>false),
别忘了在“管理”>“永久链接”>“更新”中保存新结构。
我希望这对你有帮助。
再见