Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save generatepress/38a00e43abb9a758c14a5e07ffbee0b3 to your computer and use it in GitHub Desktop.
Save generatepress/38a00e43abb9a758c14a5e07ffbee0b3 to your computer and use it in GitHub Desktop.
Add the page header image to WooCommerce
add_action( 'wp', 'tu_add_page_header_image_woocommerce', 60 );
function tu_add_page_header_image_woocommerce() {
if ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) {
add_action( 'generate_before_content', 'generate_page_header' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment