Thanks Tom, I’ve got this sorted now.
On the custom taxonomy archive page, what do I need to do to make sure images are cropped to the same size on the category page?
http://185.20.51.60/~markettownmemori/memorialcategories/cemetery-memorials/
I’ve added this to functions but doesn’t seem to work…
add_filter( ‘generate_blog_image_attributes’,’tu_variable_image_sizes’ );
function tu_variable_image_sizes( $atts ) {
// Set up our conditional
if ( is_post_type_archive( ‘memorialcateogories’ ) ) {
$atts[ ‘width’ ] = 800;
$atts[ ‘height’ ] = 600;
$atts[ ‘crop’ ] = true;
}
// Return our options
return $atts;
}