[Theme:Hooray] Over-ride "Post Thumbnails"
-
Hello! This code is in the functions of the parent theme:
/** * Post Thumbnails */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 800, 500, true ); set_post_thumbnail_size( 75, 75, true ); set_post_thumbnail_size( 330, 249, true );
I would like to over-ride this in my child theme so that it does not happen. I would prefer NOT to alter the parent function.php so I don’t have to keep doing it whenever there’s an update.
Does anyone know how to do this? Any help is appreciated!!
- The topic ‘[Theme:Hooray] Over-ride "Post Thumbnails"’ is closed to new replies.