预定的帖子 - 插件错过时间表 - WP到Twitter

时间:2012-10-02 10:27:52

标签: wordpress wordpress-plugin scheduled-tasks

在Wordpress 3.4.2中安排帖子的功能似乎被打破了。 所以我安装了插件 WP Missed Schedule ,每隔5分钟就会检查一下这个问题。 我还使用支持该功能的插件 WP to Twitter 自动向Twitter发送新帖子 - 无论帖子是否有计划。

以下是问题:

如果有一个预定的帖子,它将在WordPress中发布,由Plugin WP Missed Schedule支持,但不是推文!

WP Missed Schedule中的守则说:

wp_publish_post($scheduledID)

WP中的被称为Hook的Twitter说:

add_action( 'publish_post', ...)

对于 wp_publish_post 这个函数,Hook publish_post 是正确的吗? 我没有找到任何关于此的文件。

希望你能帮助我:)。

1 个答案:

答案 0 :(得分:0)

我在使用Tweetable的网站上遇到了同样的问题。我在正好之后添加了这一行 wp_publish_post($ scheduledID)

tweetable_publish_tweet($ scheduledID);

但那不是问题。如果修改日期在发布日期之后,Tweetable中有几行导致发布功能退出。当插件发布帖子时,它会更改修改日期。我在Tweetable中注释了这些行,但它确实有效。