How to create 6 thumbnail for recent post ?
-
Good day,
Currently I making a theme for I submit to WordPress theme. But I have a little problem.
My question is: How to create 2 big thumbnail with 4 small thumbnail for recent post ?? Example: https://i.imgur.com/ZTmbQ5D.png
Note: I know very well about css.
I’m using this code:
<!--<recent post>--> <?php if ( have_posts() ) : ?> <?php while (have_posts()) : the_post(); ?> <?php if (has_post_thumbnail()) { ?> <div class="thumb_image"> <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"> <img class="fadein" src="<?php $image_id = get_post_thumbnail_id(); $image_url = wp_get_attachment_image_src($image_id,'full', true); echo $image_url[0]; ?>"> </a> </div> <?php } ?> <h1 class="title"> <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php echo get_the_title(); ?></a> </h1> <div class="description"> <?php the_content(''); ?> </div> <div class="read_more"> <span><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php _e('Continue Reading', 'translate'); ?></a></span> </div> <div class="blog_items"> <?php the_time('F j, Y') ?> </div> <?php endwhile; ?> <?php else : ?> <?php endif; ?> <!--</recent post>-->
Can someone help me, please!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to create 6 thumbnail for recent post ?’ is closed to new replies.