Adding a size to thumbnails breaks layout
-
<div class="su-posts su-posts-teaser-loop"> <?php // Posts are found if ( $posts->have_posts() ) { while ( $posts->have_posts() ) : $posts->the_post(); global $post; ?> <div id="su-post-<?php the_ID(); ?>" class="su-post"> <?php if ( has_post_thumbnail() ) : ?> <a href="<?php the_permalink(); ?>" class="su-post-thumbnail" ><?php the_post_thumbnail('medium'); ?></a> <?php endif; ?> <h2 class="su-post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> </div> <?php endwhile; } // Posts not found else { echo '<h4>' . __( 'Posts not found', 'shortcodes-ultimate' ) . '</h4>'; } ?> </div>
Adding Medium to the_post_thumbnail() breaks the layout.
My layout is like so:
TEXT INTRO PARAGRAPH
SHOW TWO POSTS via Ultimate ShortcodeWhen I add medium it becomes
POST ONE
TEXT INTRO PARAGRAPH
POST TWOand most of the text is hyperlinked.
https://s31.postimg.org/sa1wzst2z/2016_04_24_14_12_18_2016_Market_Insights.png
- The topic ‘Adding a size to thumbnails breaks layout’ is closed to new replies.