Thumbnails being cut off
-
Hey there, I have a relatively simple loop on my front page for WP, pulling news in – which is this:
<?php $posts = get_posts('numberposts=3&category=4'); foreach ($posts as $post) : setup_postdata( $post ); ?> <div class="news_module"> <a href=<?php the_permalink() ?>><?php insert_picture(); ?> <div class="rightside"> <h2><?php the_title();?> </h2> </a> <h4><?php the_date(); ?></h4> </div> </div> <?php endforeach; ?>
The problem is that my images in this loop are being cropped
I tried going into the Media settings and unchecking “crop” or whatever, I also re-uploaded my images in the articles and they’re still cropped.
Would I need to edit “<?php insert_picture(); ?>” in functions.php or something?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Thumbnails being cut off’ is closed to new replies.