hocam functions.php içinde,
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );gibi bir kod olacak, onu:
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150, true );şeklinde değiştirirsen, boyutlar 150x150 gelir.
bunun yanında css'e;
.article-wrapper figure img{
width:150px;
height:150px;
}eklersen de, öne çıkan görsel boyutu önemli değil, resmi 150x150 yapar
Çok şükür hızır gibi yetiştiniz vallahi ^^ Hocam yanlız bende öyle bir kod yokta şöyle bir kod var;
add_theme_support( 'post-thumbnails' );
add_image_size( 'small-poster', $small_poster['width'], $small_poster['height'], true );