remove img resizing, has to be done per-logo
This commit is contained in:
parent
356e142f0b
commit
429bf75017
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue