in:
Media Settings> Large size>width is set to 695px.
I have checked in the database>options and that it is also set to 695px.
But when i upload an image (say 2000px wide) the Large size is set to 620px.
What am i doing wrong?
found the problem and the fix.
the fix is:
// FIX LARGE SIZE IMAGE SIZE
function my_theme_setup() {
// Define $content_width global
global $content_width;
if ( ! isset( $content_width ) ) {
$content_width = 695;
}
}
add_action( ‘after_setup_theme’, ‘my_setup’, 9 );
the problem was that though i use this theme a lot, tis design had a transparent content area, so i had not set a width for the content area. so the parent theme function file defaulted to a width of 620. which for some reason showed up in the image sizes section.
