Ok – resolved it (sort of).
1) My mistake – I hadn’t built out the full directory structure for the content-featured.php file
2) I have my site layout set to Fluid – so it wasn’t using the new thumbnail size anyway. If I change these lines:
if ( ‘fluid’ === get_theme_mod( ‘fotografie_layout_type’ ) ) {
$thumbnail = ‘fotografie-featured-fluid’;
}
to
if ( ‘fluid’ === get_theme_mod( ‘fotografie_layout_type’ ) ) {
$thumbnail = ‘fotografie-featured-custom’;
}
then it works – however I’m not sure what the impacts of doing this are? what’s the difference between Boxed and Fluid?
Thanks
Leon