Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WordPress Twenty Fifteen テーマに FaceBook Page Plugin を入れてみました

Posted at

初心者のやり方ですが、参考になれば。

#1. FaceBook Page Plugin のコードを入手する。

こちらのサイトを参考にしました。
https://39life.net/fbpageplugin/

#2. 入手したコードをテーマに入れる。
content.php の
entry-content のすぐ下、Author bio. の前です。

content.php
		?>
	</div><!-- .entry-content -->


<!-- ここから -->

<div class="fb-page-plugin">
<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/ja_JP/sdk.js#xfbml=1&version=v2.4&appId=xxxxxxxxxxxxxxxxxxx";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>


<div class="fb-page" data-href="https://www.facebook.com/facebook" data-width="500" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="false" data-show-posts="true"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/facebook"><a href="https://www.facebook.com/facebook">Facebook</a></blockquote></div>
</div>

<!-- ここまで -->


	<?php
		// Author bio.
		if ( is_single() && get_the_author_meta( 'description' ) ) :
			get_template_part( 'author-bio' );
		endif;
	?>

xxxxxxxx のところは、私のユニークな番号かもしれないと思って伏字にしてあります。

さらに style.css の最後に 真ん中合わせを指定する内容を追加します。

style.css

.fb-page-plugin{
	text-align: center;
	margin: 20px 0;
}

そうすると、こういう表示になりました。

スクリーンショット 2015-07-09 15.54.29.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?