問題
Wordpressでカスタムフィールドの値を取得するには?
解決策
「post_custom('カスタムフィールド名')」で取得する。
カスタムフィールドの値を取得する記述
カスタムフィールドの値を、以下の記述で取得することができます。
post_custom('カスタムフィールド名');
記述例
実際に使用する記述例は以下になります。
$field = post_custom('field');
if( !empty( $field ) ):
echo $field;
endif;
参照
【post_custom – WordPress私的マニュアル】
https://elearn.jp/wpman/function/post_custom.html
コメント