使用wordpress创建评论时发推文

时间:2010-11-29 10:30:22

标签: wordpress twitter tweets

我正在使用wp-twitter插件(使用WordPress 3.0.1)在创建帖子时自动创建推文并且它工作得很好!

现在我需要在创建评论时创建推文...你知道任何插件吗?

或者,如果您更改了wp-twitter插件,请给我一些指导方针吗?

提前致谢!

1 个答案:

答案 0 :(得分:3)

您可以使用comment_post挂钩并添加将内容提交到您的Twitter帐户的操作。

示例:

function tweet_comment($comment_ID, $approved) {
   if($approved) {
      $comment = get_comment($comment_ID);
      //Submit to twitter => $comment->comment_content
      $consumerKey = '<insert your consumer key';
      $consumerSecret = '<insert your consumer secret>';
      $oAuthToken = '<insert your access token>';
      $oAuthSecret = '<insert your token secret>';

      require_once('<insert_path_to_twitteroauth>/twitteroauth.php');

      // create a new instance
      $tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);

      //send a tweet
      $tweet->post('statuses/update', array('status' => substr($comment->comment_content, 0, 140)));
   }
}
add_action('comment_post','tweet_comment', 10, 2);