Smart Custom Fieldsで他の固定ページのフィールドを取得
ページID=2のフィールドの表示
1 2 3 4 5 6 7 |
<?php $field = SCF::get(カスタムフィールド名,2); echo $field; //テキスト echo nl2br($field); //改行保持 echo wp_get_attachment_image($field, 'full'); //画像IMGタグ echo do_shortcode($field); //ショートコード ?> |
コメント