Home › Forums › Claremont › Header logo re-sizing › Reply To: Header logo re-sizing
March 26, 2017 at 2:55 pm
#1273
Andy
Keymaster
It needs to be wrapped in the claremont_setup() function, so the code would be:
function claremont_setup() {
add_theme_support('custom-logo', array(
'width' => '400',
'height' => '200',
) );
}
add_action( 'after_setup_theme', 'claremont_setup' );