カテゴリー
wordpress テンプレートタグ

wordpressで任意の大きさにトリミングしたサムネイルを表示するテンプレートタグ

wordpressで任意の大きさにトリミングしたサムネイルを表示するテンプレートタグ

	<?php while (have_posts()) : the_post(); ?>
/*サムネイルがある場合*/
		<?php if (has_post_thumbnail()):?>
		<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(array(120,120)); ?><br /><span class="yarpp-thumbnail-title"><?php the_title(); ?></span></a></li>
		<?php endif; ?>
/*サムネイルがない場合場合*/
		<?php if (!has_post_thumbnail()):?>
		<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><img src="代替画像指定" width="120" height="120" alt="<?php the_title(); ?>" /><br /><span class="yarpp-thumbnail-title"><?php the_title(); ?></span></a></li>
		<?php endif; ?>
	<?php endwhile; ?>

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です