Skip to content

Instantly share code, notes, and snippets.

@wpexplorer
Created September 20, 2017 21:54
Show Gist options
  • Save wpexplorer/b5938341e3574b438f7dcebbc0394131 to your computer and use it in GitHub Desktop.
Save wpexplorer/b5938341e3574b438f7dcebbc0394131 to your computer and use it in GitHub Desktop.
// Insert title above shop categories
add_action( 'wpex_hook_content_top', function() {
if ( is_tax( 'product_cat' ) ) {
echo '<h1 class="myprefix-woo-category-title">' . single_term_title( '', false ) . '</h1>';
}
}, 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment