In the Customizr WordPress theme, you can easily change the default h1 html tag of the post or page title with the ‘tc_content_title_tag’ filter. The quick example below illustrates how to change every post of page title to h2 (instead of the default h1) add_filter(‘tc_content_title_tag’ , ‘my_title_tag’); function my_title_tag() { […]
Hook: tc_content_title_tag
1 post