How to show a facebook page on a wordpress page?

Hi, may I know how can I show (or embed) a facebook fan page on a wordpress page?

Appreciate if anyone can help, thank you!

Hello there,

Open the Footer.php of your Theme and add the First Code that Facebook Provided to you… something like :


<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=****************";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

The **************** will be your App ID number…

Then Open the Page where you want to Embed the Fan Page To, by using Text Mode in the Editor :


<div class="fb-like-box" data-href="https://www.facebook.com/Your-Page" data-width="300" data-colorscheme="light" data-show-faces="true" data-header="false" data-stream="false" data-show-border="true"></div>

Change Your-Page with your Page Name…

Goodluck