Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタムフィールド「imageembed」の値がない場合に画像が表示されないようにこのコードを調整するにはどうすればよいですか?
<?php $imageid = get_post_meta($post->ID, 'imageembed', true); ?> <div class="newsimage"><img src="<?php echo wp_get_attachment_url( $imageid ); ?>" width="640" /></div>
このようなもの
<?php if (strlen($imageid = get_post_meta($post->ID, 'imageembed', true))) { ?> <div class="newsimage"><img src="<?php echo wp_get_attachment_url((int) $imageid); ?>" width="640" /></div> <?php } ?>