Home Forums Claremont Header logo re-sizing Reply To: Header logo re-sizing

#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' );