WP_INSERT_POST库中的特色图像

时间:2014-02-03 作者:Feel The Noise

我知道有很多关于它的帖子,但我不想上传一个URL图片到图书馆,我已经在图书馆和它的IP中有了图片。我如何使用它wp_insert_post?

1 个回复
最合适的回答,由SO网友:fischi 整理而成

您可以使用该功能set_post_thubmnail().

插入帖子后,只需调用此帖子,就可以开始了。

$yourpostid = wp_insert_post( $args ); // Define the post in the args first
set_post_thumbnail( $yourpostid, $thumbnail_id ); // set the ID of your thumbnail to be the featured image of your newly created post.

结束

相关推荐

how to edit attachments?

在将例如文件附加到帖子时,如何在事后编辑/删除它们?在帖子编辑器中找不到任何内容。谢谢