我如何通过php自动填充wordpress中的帖子的特色图像

时间:2016-04-28 02:47:57

标签: php mysql wordpress

我在我的php网站上收到一个帖子数据作为变量,如下所示:

$$post_title ="post title"
post_content ="post content"
post_slug = "post slug"
$post_category = "post_ ategory"
$featured_image = "post featured image URL"

我认为将这些变量发送到我的mysql wordpress表(wp_posts,wp_term_relationships& wp_term_taxonomy )没问题 我还没试过,但我认为这很容易

我的问题在这里关于 $ featured_image 。我如何将它发送到我的mysql表作为这篇文章的特色图片,我是否必须将图像从URL上传到我的网站主机或什么& #39;步骤?

1 个答案:

答案 0 :(得分:0)

您可以使用以下功能

set_post_thumbnail( $post, $thumbnail_id );

其中第一个参数是post id而第二个参数是thumbnail id ...有关详细信息,请访问官方WordPress codex页面http://codex.wordpress.org/Function_Reference/set_post_thumbnail