1 2 3 4 5 6 7 8 9 10 11 12 13 | <?php if (have_posts()): while (have_posts()):the_post(); ?> <ul> <li> <?php if ( has_post_thumbnail() ): ?> <a href= "<?php the_permalink(); ?>" ><?php the_post_thumbnail( 'array(200,150)' ); ?></a> <?php else : ?> <a href= "<?php the_permalink(); ?>" ><img src= "<?php echo get_template_directory_uri(); ?>/images/no-image.png" ></a> <?php endif ; ?> <!--アイキャッチ画像 End --> <div class = "caption" ><a href= "<?php the_permalink(); ?>" ><?php echo mb_substr( $post ->post_title, 0, 10) . '...' ; ?></a></div> </li> </ul> <?php endwhile ; endif ; ?> |
1 | .listpost img{ width : 200px ; height : 123px ;} |