Bunları da incelemiştim ama çözüm bulamamıştım.
tema functions.php
// Enable support for Post Thumbnails
add_theme_support( 'post-thumbnails' );
add_image_size( 'excerpt-thumb', 250, 350 );
add_image_size( 'attachment-page', 1000, 1500 );
tema index.php
* Display full content for home page and single post pages
*/
if ( is_home() || is_single() || is_page() ) {
the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'hellish' ) );
wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'hellish' ), 'after' => '</div>' ) );
} else {
// Use the built in thumbnail system, otherwise attempt to display the latest attachment
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'excerpt-thumb' );
} elseif ( function_exists( 'get_the_image' ) ) {
get_the_image( array( 'size' => 'thumbnail' ) );
}
the_excerpt();
}
?>
</div><!-- .entry-content -->Tema zaten bilindik bir tema; Hellish Simplicity. Ben birçok temada denedim bu durumu ama sonuç aynı. Yani tahminime göre tema ile alakalı değil gibi.