Wordpress - 通过PHP同时发布带有特色图像的帖子

时间:2015-06-18 17:41:37

标签: php wordpress dynamic-featured-image

我通过PHP发布到Wordpress,如下所示。

  • 使用 wp_insert_post()
  • 创建帖子
  • 使用 wp_insert_attachment()
  • 添加精选图片

问题

创建帖子时,会有一个插件(SNAP autoposter),会自动在Facebook上发布。但是,很明显,它不会等到附加特色图像。

问题

如何使用已分配的附件发布帖子?

非常感谢您的帮助:)

1 个答案:

答案 0 :(得分:1)

在添加附件之前不要发布帖子。

  • 致电post_status时,将draft设为wp_insert_post
  • 将附件添加到草稿中。
  • 使用wp_publish_post发布帖子。

如果插件设置正确,它将监听状态转换以发布。