投稿を書くときに「アイキャッチ画像」を設定することができます。
それをサムネイルとして固定ページに出力(表示)する方法です。
<?php if ( has_post_thumbnail() ) { ?><!--サムネイルがあるとき --> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <a href="<?php the_permalink(); ?>" class="thumbnail-toppage"><?php the_post_thumbnail( 'thumbnail' ); ?></a> <?php the_content_limit(50, "続きを見る"); ?> <?php } else { ?> <!--サムネイルがないとき --> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_content_limit(50, "続きを見る"); ?> <?php } ?>
コメント