Skip to content

Instantly share code, notes, and snippets.

@w33zy
Last active June 8, 2021 01:35
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 w33zy/2ed78d79650dcccb00765ce7f8ab5ad2 to your computer and use it in GitHub Desktop.
Save w33zy/2ed78d79650dcccb00765ce7f8ab5ad2 to your computer and use it in GitHub Desktop.
<?php
function themename_custom_logo_setup( $args ) {
$args['height'] = 116;
$args['width'] = 250;
return $args;
}
add_filter( 'storefront_custom_logo_args', 'themename_custom_logo_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment