您可以使用哈希(默认情况下javascript的处理方式)处理该问题,并将url作为示例。com#people或任何其他分隔符。它应该很简单,只需更改解析url的字符即可。
更新:根据注释的示例代码
$args = array(
\'label\' => \'Your Label\',
\'labels\' => $labels, //define this elsewhere
\'public\' => false,
\'publicly_queryable\' => true,
\'exclude_from_search\' => true, //change this if needed
\'show_ui\' => true,
\'show_in_menu\' => true,
\'menu_position\' => 20,
\'supports\' => array(
\'title\',
\'editor\',
\'author\',
\'custom-fields\',
\'revisions\'
),
\'taxonomies\' => array(
\'category\'
),
\'has_archive\' => false,
\'show_in_nav_menus\' => true
);
register_post_type( \'single-pages\', $args );
http://codex.wordpress.org/Function_Reference/register_post_type 对于文档,您可能需要删除/调整其中的一些参数,以满足您在项目上的规范,如果是客户的站点,您肯定需要设置可用性标签,但这应该可以让您继续。此代码未经测试(我将其直接写入textarea,请原谅任何拼写错误)。