我在自定义帖子类型中添加了slug输入字段,并允许用户在前端编辑它。然后,在插入帖子时,我使用以下方法:
$wp_insert_post_args = array(
\'post_status\' => \'publish\',
\'post_type\' => MY_POST_TYPE,
\'post_author\' => $this->creator_id,
\'post_title\' => $this->name
\'post_name\' => sanitize_title( $this->slug )
);
我的自定义帖子类型已经支持“title”,因此,它应该自动生成post\\u名称。现在我添加$slug作为“post\\u name”,如上所述,
will woredpress use \'title\' to generate \'post_name\', or use my \'slug\'? wordpress会像在普通帖子上一样执行slug exist检查吗,还是我应该自己检查?