我正在使用wp_insert_post()
编写简单脚本在博客中发表文章。
但是这里有一个问题,我想让URL的标题和 slug 不同。
如何实现这一目标?
例如:
标题:如何使您的饮食成功
Slug:7-ways-to-make-succes-Diet
答案 0 :(得分:26)
post_title 设置标题, post_name 设置标题。 所以:
// Create post object
$my_post = array(
'post_title' => 'How to make your diet success',
'post_name' => '7-ways-to-make-succes-Diet',
'post_content' => 'my content',
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array(8,39)
);
// Insert the post into the database
wp_insert_post( $my_post );