Created
September 20, 2017 21:54
-
-
Save wpexplorer/b5938341e3574b438f7dcebbc0394131 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
// 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