add_image_size plays with me
-
Hey Crew,
look at this:
add_theme_support( 'post-thumbnails' ); if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); } if ( function_exists( 'add_image_size' ) ) { add_image_size( 'imageone', 361, 170, array('center', 'center') ); add_image_size( 'imagetwo', 257, 171, array('center', 'center') ); }
It works fine, awesome. But:
add_theme_support( 'post-thumbnails' ); if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); } if ( function_exists( 'add_image_size' ) ) { add_image_size( 'imageone', 361, 170, array('center', 'center') ); add_image_size( 'imagetwo', 257, 171, array('center', 'center') ); add_image_size( 'kingsize', 1150, 540, array('center', 'center') ); }
works not. Why is WordPress hidung the kingsize? Its not working. When i set the kingsize to
30, 540
it starts to work. But when i set it back to1150,540
it stopped.Excuse me… ?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘add_image_size plays with me’ is closed to new replies.