No matter how I try to add a custom image size to the library, it seems to be generated with a max width of 742px. Here’s what I’m trying now hoping to see a new “Blog Inline” version selectable in the media library with an 800px width. Unfortunately, no matter how I add the custom image size, it’s always capped at 742px wide.
//Add Blog Inline Image Size
function pw_add_image_sizes() {
add_image_size( ‘blog-inline’, 800, 9999, false );
}
add_action( ‘init’, ‘pw_add_image_sizes’ );
function pw_show_image_sizes($sizes) {
$sizes[‘blog-inline’] = __( ‘Blog Inline’, ‘pippin’ );
return $sizes;
}
add_filter(‘image_size_names_choose’, ‘pw_show_image_sizes’);
