[FONT=monospace]Hat es vielleicht was mit class="thumbnail" zu tun?
Auszug aus dem functions.php:
[/FONT]
<?php
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 300, 300, true );
add_editor_style('editor-style.css');
add_action( 'admin_init', 'theme_options_init' );
add_action( 'admin_menu', 'theme_options_add_page' );
... und so weiter
Alles anzeigen
[FONT=monospace]Auszug aus dem index.php:[/FONT]
<?php
if(has_post_thumbnail()) {
echo '<a href="'; the_permalink(); echo '">';the_post_thumbnail(array(300, 300)); echo '</a>';
} else {
$image = get_first_image();
if ($image):
echo '<a href="'; the_permalink(); echo'"><img src="'.$image.'" alt="';the_title();echo'" /></a>';
endif;
} ?>
Alles anzeigen