Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Last active December 3, 2018 13:27
Show Gist options
  • Save madeincosmos/7376fcdd2bf9cb522cec18a7c79464d4 to your computer and use it in GitHub Desktop.
Save madeincosmos/7376fcdd2bf9cb522cec18a7c79464d4 to your computer and use it in GitHub Desktop.
Change header image size in Storefront
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