Last active
May 29, 2016 04:28
-
-
Save nishinoshake/e76f998a493c0098e420 to your computer and use it in GitHub Desktop.
カスタムフィールドのプラグイン
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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