人力検索はてな
モバイル版を表示しています。PC版はこちら
i-mobile

wordpress3.5にてカスタムフィールドを作成中です。
以下のサイトを参考に作成中ですが、項目内の値が空欄のときにはその項目自体を表示させない方法はありませんでしょうか?
http://make.mapmap.biz/plugins/37/

●質問者: kaji0245
●カテゴリ:ウェブ制作
○ 状態 :終了
└ 回答数 : 1/1件

▽最新の回答へ

1 ● rouge_2008
●100ポイント ベストアンサー

記事のサンプルコードでは、次の部分で登録した情報のボックス全体の表示を決めていました。(※郵便番号が保存されていると表示します。)

<?php if ( get_post_meta($post->ID,'Zip',TRUE) ): ?>


ただし、郵便番号が保存されていないと表示されませんので、次のようにして郵便番号と住所(セット)、電話番号、営業時間、休業日、座席数、経度および緯度(セット)、感想の何れかが保存されていた場合に表示されるようにしてはいかがでしょうか?

<?php if( ( post_custom("Zip") && post_custom("Address") ) || post_custom("Tel") || post_custom("Time") || post_custom("Holiday") || post_custom("Seat") || ( post_custom("Map_lat") && post_custom("Map_lng") ) || post_custom("Impression") ) : ?>


同じようにして、各項目ごとの行を条件分岐で表示すると良さそうです。

<table>
<?php if( post_custom("Zip") && post_custom("Address") ) : ?>
<tr><td class="name">住所</td><td>〒<?php echo post_custom("Zip")?><br /><?php echo post_custom("Address")?></td></tr>
<?php endif; ?>
<?php if( post_custom("Tel") ) : ?>
<tr><td class="name">電話番号</td><td><?php echo post_custom("Tel")?></td></tr>
<?php endif; ?>
<?php if( post_custom("Time") ) : ?>
<tr><td class="name">営業時間</td><td><?php echo post_custom("Time")?></td></tr>
<?php endif; ?>
<?php if( post_custom("Holiday") ) : ?>
<tr><td class="name">定休日</td><td><?php echo post_custom("Holiday")?></td></tr>
<?php endif; ?>
<?php if( post_custom("Seat") ) : ?>
<tr><td class="name">席数</td><td><?php echo post_custom("Seat")?></td></tr>
<?php endif; ?>
<?php if( post_custom("Map_lat") && post_custom("Map_lng") ) : ?>

...(略)

</tr>
<?php endif; ?>
<tr>

...(略)

</tr>
<?php if( post_custom("Outward") || post_custom("Curry Photo1") || post_custom("Curry Photo2") ) : ?>
<tr>

...(略)

</tr>
<?php endif; ?>
</table>
<?php endif; ?>

※上記の例では、郵便番号と住所、Map_latとMap_lngは、それぞれ両方保存されていた場合に表示するようにしています。
※カスタムフィールドの名前はサンプルコードと同じになっていますので、実際の使用状況に合わせて適宜変更してください。


kaji0245さんのコメント
いつも大変助かっております! 今回の分もビンゴです、ありがとうございました<(_ _)>
関連質問

●質問をもっと探す●



0.人力検索はてなトップ
8.このページを友達に紹介
9.このページの先頭へ
対応機種一覧
お問い合わせ
ヘルプ/お知らせ
ログイン
無料ユーザー登録
はてなトップ