
WordPressプラグイン「Advanced custom field」の基本的な使い方と用例

前回の記事でAdvanced custom field(以下ACF)をご紹介しましたが、
今回はもう少し踏み込んでご紹介しようと思います。
■基本
・記述方法は「the_field()」と「get_field()」の二通り 値の内容を表示したいときは、the_field()を使います。1 | the_field( 'my_custom_01' ); |
1 | $hoge = get_field( 'my_custom_01' ); |
1 | the_field( 'my_custom_01' , 100); |
■用例
私がよく使う使い方を用例にご紹介します。 ・フィールドタイプ:テキスト →ちょっとした入力項目を増やすときに使います。1 2 3 4 | $text = get_field( 'my_custom_01' ); if ( $text ) : echo $text ; endif ; |
1 2 3 4 5 6 7 | $image = get_field( 'my_custom_02' ); if ( $image ) : $thumbnail = wp_get_attachment_image_src( $image , 'full' ); echo '</pre> <img src= "'.$thumbnail[0].'" alt= "'.get_the_title().'" width= "'.$thumbnail[1].'" height= "'.$thumbnail[2].'" /> <pre>'; endif ; |
1 2 3 4 5 6 7 8 9 10 | $date = get_field( 'my_custom_03' ); if ( $date ) : $dateY = date ( 'Y' , strtotime ( $date )); $dateM = date ( 'm' , strtotime ( $date )); $dateD = date ( 'd' , strtotime ( $date )); $dateOrg = mktime (0, 0, 0, $dateM , $dateD , $dateY ); if ( $dateOrg >= mktime (0, 0, 0, date ( 'm' ), date ( 'd' ), date ( 'Y' ))) : echo 'Y年m月n日までここの内容を出力します' ; endif ; endif ; |
・ACFダウンロード先
WordPress公式プラグインディレクトリ
・開発者サイト
Advanced custom field