Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Last active May 27, 2016 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeyarce/2cd330e2b029b880beeea70ccbffcc98 to your computer and use it in GitHub Desktop.
Save mikeyarce/2cd330e2b029b880beeea70ccbffcc98 to your computer and use it in GitHub Desktop.
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