Last active
December 3, 2018 13:27
-
-
Save madeincosmos/7376fcdd2bf9cb522cec18a7c79464d4 to your computer and use it in GitHub Desktop.
Change header image size in Storefront
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
function woo_custom_storefront_header_size( $args ) { | |
$args['height'] = 1000; | |
return $args; | |
} | |
add_filter( 'storefront_custom_header_args', 'woo_custom_storefront_header_size' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment