在 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 to Twitter 中的所谓 Hook 说:
add_action( 'publish_post', ...)
那么 Hook publish_post是否适合wp_publish_post函数?我没有找到任何有关此的文档。
希望你能帮我 :)