Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 04:28
Show Gist options
  • Save nishinoshake/e76f998a493c0098e420 to your computer and use it in GitHub Desktop.
Save nishinoshake/e76f998a493c0098e420 to your computer and use it in GitHub Desktop.
カスタムフィールドのプラグイン
Advanced Custom Fields
表示名、key,valueを決めて入力するだけ。
本来カスタムフィールドはthe_metaみたいなので取ってくるけど、
ACFがfield()って関数を定義してくれてる。
display
<p><?php the_field('fieldname'); ?></p>
get
get_field('field_name')
get by post_id
get_field('field_name', post_id)
本家
http://www.advancedcustomfields.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment