Er zijn meerdere script en plugins voor custom size van images. Deze werkt en ook voor Enfold template.

 

/* additional image size(s)
*
*/

// add new size
add_image_size( ‘nieuwsberichtfoto’, 312, 244, true );
add_image_size( ‘teamfoto’, 174, 174, true );

// make the new size available in the media library (and image element etc.)
add_filter( ‘image_size_names_choose’, ‘my_custom_sizes’ );

function my_custom_sizes( $sizes ) {
return array_merge( $sizes, array(
‘nieuwsberichtfoto’ => __( ‘Nieuwsberichtfoto’ ),
‘teamfoto’ => __( ‘Teamfoto’ ),
) );
}