作为一个云计算领域的专家,我可以为您提供关于wp_insert_post
插入帖子ID的相关信息。
wp_insert_post
是一个WordPress核心函数,用于插入新的帖子或页面。它接受一个包含帖子或页面信息的数组,并返回新创建的帖子或页面的ID。
以下是一个使用wp_insert_post
插入帖子的示例:
$post_id = wp_insert_post(array(
'post_title' => 'My new post',
'post_content' => 'This is the content of my new post.',
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array(1, 3)
));
在这个示例中,我们创建了一个新的帖子,并将其分配给了两个类别。wp_insert_post
函数返回了新创建的帖子的ID,我们将其存储在$post_id
变量中。
总之,wp_insert_post
是一个非常有用的函数,可以帮助您轻松地在WordPress中插入新的帖子或页面。
领取专属 10元无门槛券
手把手带您无忧上云