hanuman6
6/28/2013 - 2:08 PM

サムネを表示するがなければデフォルト画像を表示

サムネを表示するがなければデフォルト画像を表示

<?php if ( has_post_thumbnail() ): // サムネイルを持っているときの処理 ?>
<?php
$title= get_the_title();
the_post_thumbnail(array( 259,259 ),
array( 'alt' =>$title, 'title' => $title)); ?>
<?php else: // サムネイルを持っていないときの処理 ?>
<img src="<?php bloginfo('template_url'); ?>/img/sample.png" alt="no image" title="no image" width="259" height="259" />
<?php endif; ?>