アイキャッチ画像にページタイトルをいれちゃおう。
<?php while ( have_posts() ) : the_post(); ?> <li id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> <?php $title= get_the_title(); the_post_thumbnail(array( 252,252 ), array( 'alt' =>$title, 'title' => $title)); ?></a> </li> <?php endwhile; ?> <?php wp_reset_query();?>
配列でaltとtitleに取得して来たタイトルを入れる。
なるほどすばらしい。