ich nutze the_post_thumbnail um das Artikel bild anzuzeigen, aber egal was ich mache es wird immer auf die maximale breite gezoomt. die bilder werden richtig skaliert wenn ich sie abspeicher haben sie die richtige grösse.
im style.css wird das nicht definiert oder ? habe es Komplet gelöscht und das selbe.
das steht in der:[h=3]content-single.php[/h]</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_post_thumbnail(array(300,200)); ?>
<?php the_post_thumbnail(thumbnail); ?>
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'pin' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
the_post_thumbnail(); // without parameter -> 'post-thumbnail'
the_post_thumbnail('thumbnail'); // Thumbnail (default 150px x 150px max)
the_post_thumbnail('medium'); // Medium resolution (default 300px x 300px max)
the_post_thumbnail('large'); // Large resolution (default 640px x 640px max)
the_post_thumbnail('full'); // Full resolution (original size uploaded)
the_post_thumbnail( array(100,100) ); // Other resolutions