Last active
June 8, 2021 01:35
-
-
Save w33zy/2ed78d79650dcccb00765ce7f8ab5ad2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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