返信先: 【解決済】functions.phpにてカスタムフィールドの判定ができない
フォーラム › その他 › 【解決済】functions.phpにてカスタムフィールドの判定ができない › 返信先: 【解決済】functions.phpにてカスタムフィールドの判定ができない
2020年10月13日 5:06 PM
#91137
Konoha
参加者
maiさま
たとえば
$item_name = get_post_meta($post->ID, '_itemName', true); //商品名
は取得できて
$test_text = get_post_meta($post->ID, 'test_text', true); //独自
は取得できないのですよね?
もしかしたら
そのカスタムフィールドのキー名が違っているのではないかしら?
Smart Custom Fieldsを使用とのことですが、
フィールド設定でのキー名(名前)にスペースが入ってしまっているとか…
「繰り返し」の設定をしているとか…
私も同様にSCFを使用しているので、
add_filter('usces_filter_assistance_item_list', 'my_format_assistance_item_list',10,2);
function my_format_assistance_item_list($list, $post) {
if(get_post_meta($post->ID,'test_text',true)):
echo 'test';
endif;
return $list;
}
で確認しましたが、特に問題なく表示されました。