我注册了一个新的CPT,它确实起作用了,但在处理了一些不同的东西之后,当我刷新页面时,我意识到我的CPT开始使用索引了。php。我认为我的代码一切正常。给你。
function mn_portfolio_post_type_init() {
$labels = array(
// Labels .
);
$portfolioargs = array(
\'labels\' => $labels,
\'public\' => true,
\'has_archive\' => true,
\'query_var\' => true,
\'publicly_queryable\' => true,
\'rewrite\' => true,
\'supports\' => array(
\'title\',
\'editor\',
\'thumbnail\',
\'author\',
\'excerpt\',
\'custom-fields\',
\'revisions\'
),
\'hierarchical\' => false,
\'menu_position\' => 5,
\'menu_icon\' => \'dashicons-media-document\',
\'capability_type\' => \'post\'
);
register_post_type(\'portfolio\', $portfolioargs);
}
add_action(\'init\', \'mn_portfolio_post_type_init\');
之后,我使用了一个新的页面名称。php,一切都很好,但现在我没有办法帮我解决这个问题。