wordpressカスタムフィールドの値を取得
- 公開日:
- 更新日:
- 文字数:101文字


$cfs=(get_post_custom());
$my_custom_field = $cfs['url'];
echo $my_custom_field[0];



$cfs=(get_post_custom());
$my_custom_field = $cfs['url'];
echo $my_custom_field[0];