![見出し画像](https://assets.st-note.com/production/uploads/images/60200589/rectangle_large_type_2_62e367e44767819f96691d7feafda878.jpg?width=1200)
【WordPress】分岐:カスタムフィールドの値
<?php if(get_post_meta($post->ID,'カスタムフィールドの名前',true) == 'カスタムフィールドの値'): ?>
〇〇です
<?php elseif(get_post_meta($post->ID,'カスタムフィールドの名前',true) == 'カスタムフィールドの値'): ?>
□□です
<?php endif; ?>
参考:
<?php if(get_post_meta($post->ID,'カスタムフィールドの名前',true) == 'カスタムフィールドの値'): ?>
〇〇です
<?php elseif(get_post_meta($post->ID,'カスタムフィールドの名前',true) == 'カスタムフィールドの値'): ?>
□□です
<?php endif; ?>
参考: