remove img resizing, has to be done per-logo

This commit is contained in:
Vasil Kolev 2014-10-14 15:56:37 +03:00 committed by Openfest
parent 356e142f0b
commit 429bf75017
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ function sponsors_shortcode() {
if ( $sponsors->have_posts() ) :
while ( $sponsors->have_posts() ) : $sponsors->the_post();
if ( has_post_thumbnail() ) {
the_post_thumbnail(array(100, 100));
the_post_thumbnail();
} else {
get_the_title();
}

View File

@ -26,7 +26,7 @@ get_header(); ?>
<div class="col2 tac">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail(array(100, 100));
the_post_thumbnail();
} else {
the_title();
}