Tagged: featured image
Hi, I would like to change the height of the code below using my child’s theme functions.php.
This is line 101 in the parent functions.php
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
I tried the below but that did not work.
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'entry_with_sidebar'' );
set_post_thumbnail_size( 710, 470 ); // New big images for blog and page
}
Thanks for your help.
Victor
Hey Victor!
Refer to this topic:
https://kriesi.at/support/topic/override-the-global-avia_config-within-child-functions-php/
Regards,
Josue
Got it. Thanks.