Guest User

Untitled

a guest
Sep 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. //OGPの設定
  3. get_template_part('ogp');
  4. //FBのユーザーIDとアプリIDを設定
  5. $og_userid = "あなたのFBユーザーID";
  6. $og_appliid = "あなたのアプリID";
  7. //画像設定(記述なしか0ならアイキャッチ 1なら固定画像)
  8. $og_img_flg = 1;
  9. //画像のパス設定(記述なしなら[images/default.gif])
  10. $og_img_url = "テーマフォルダ以降の画像パス";
  11. //heagerのwp_head()で表示させる
  12. add_action ('wp_head','print_ogp');
  13. ?>
Add Comment
Please, Sign In to add comment