Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a client who is more familiar and confident with the facebook intefrace and would like have her posts from Facebook Business page be autoposted on her Wordpress blog.

Any hints on how to achieve this.

I understand the benefits of getting her using Worpress, but at this stage the lack of WYSIWYG in the WordPress app is holding her back.

Any suggestions of plugins to take Facebook posts to Wordpress would be appreciated.

share|improve this question

2 Answers

Facebook does not yet provide real-time updates for stream posts on pages, so you'll need to do something like this:

Set up a cron job to call a script on schedule (once per hour or day probably) that:

  1. Makes an API call to her page's feed to see if any new posts were made since the last poll.

  2. If data is returned, loop through the results and create a new WP post for each FB post.

Just make sure there aren't any plugins installed on WP that autopost to FB.

I haven't ever seen a plugin like this before. There are some plugins out there that make editing Wordpress more user-friendly like Front End Editor. This might be a better solution.

share|improve this answer

get the rss feed url of your fb page and put it into the feedwordpress plugin

share|improve this answer
1  
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post - you can always comment on your own posts, and once you have sufficient reputation you will be able to comment on any post. – Jon Aug 30 '12 at 1:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.