Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Change the default custom logo size for Storefront and it's child themes
<?php
// Add this to your theme's functions.php
function marce_change_custom_logo_size() {
add_theme_support( 'custom-logo', array(
'height' => 400,
'width' => 400,
'flex-width' => true,
) );
}
add_action( 'after_setup_theme', 'marce_change_custom_logo_size', 30 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment