アクションフックが動作しました

JunSuzuki-blogsite

Just another WordPress site

2025年02月09日13時

■カスタムフィールドの練習

価格:1,000円

大きさ:160×80

content-item.phpで記述

<p>商品名:<?php the_title();?></p>

<?php $price=get_post_meta(get_the_ID(),’価格’,true);?>

<?php $publisher=get_post_meta(get_the_ID(),’出版社’,true);?>

<?php $writer=get_post_meta(get_the_ID(),’著者’,false);?>

<dl>

    <?php if($price !==”):?>

        <dt>価格</dt>

        <dd><?php echo esc_html(number_format($price));?>円</dd>

    <?php endif;?>

    <?php if($publisher !==”):?>

        <dt>出版社</dt>

        <dd><?php echo esc_html($publisher);?></dd>

    <?php endif;?>

    <?php if($writer):?>

        <dt>著者</dt>

        <?php foreach($writer as $w):?>

           <dd><?php echo esc_html($w);?></dd>

       <?php endforeach;?>

    <?php endif;?>

</dl>

戻る
Search
Side Widget
You can put anything you want inside of these side widgets. They are easy to use, and feature the Bootstrap 5 card component!