LoginSignup
2
2

More than 5 years have passed since last update.

WordPress - カスタムフィールドに値がない場合、項目を非表示にする。

Last updated at Posted at 2015-06-13
<?php if(post_custom('カスタムフィールド名')): ?>
    非表示にしたいコンテンツ
<?php endif; ?>

例:
記事末尾に、記事に関する「カテゴリー」「タグ」「リンク」等があり、その値をカスタムフィールドで生成している時、記事作成時に、「カテゴリー」「タグ」を入力するが、「リンク」のみカスタムフィールドを使用する必要がない場合、HTML側で見出しなどを作成していた時、見出しのみが存在し、値が空の状態になる。

そういった時に、値が存在しなければ、表示を非表示にする事ができる。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2