Skip to content

Instantly share code, notes, and snippets.

@johnbuck
Last active August 29, 2015 14:01
Show Gist options
  • Save johnbuck/4c952df0e928cc116110 to your computer and use it in GitHub Desktop.
Save johnbuck/4c952df0e928cc116110 to your computer and use it in GitHub Desktop.
Remove "Archive" from Testimonials Post Archive page using Canvas
/* Change Archive Template H1 */
add_filter( 'woo_archive_title', 'change_testimonial_archive_title' );
function change_testimonial_archive_title( $title ) {
if ( is_post_type_archive( 'testimonial' )) {
$title = '<h1 class="archive_header">'. __( 'Testimonials', 'woothemes' ) .'</h1>'; // now display the category only
}
return $title;
} // End filter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment