Custom Taxonomy for Page post-type removes title
Hi,
When i create a custom taxonomy with for example WP Types for Pages, the title dissapears from the page. I just created the custom taxonomy and not even using it (no taxonomies entries). The h1 tag is empty:
<div style="padding:40px 0;" id="Subheader"><div class="container"><div class="column one"><h1 class="title"></h1></div></div></div>
Any idea why this causes the title to dissapear?
Thanks
When i create a custom taxonomy with for example WP Types for Pages, the title dissapears from the page. I just created the custom taxonomy and not even using it (no taxonomies entries). The h1 tag is empty:
<div style="padding:40px 0;" id="Subheader"><div class="container"><div class="column one"><h1 class="title"></h1></div></div></div>
Any idea why this causes the title to dissapear?
Thanks
Comments
for the title is responsible function mfn_page_title( $echo = false ) which is located under functions/theme-functions.php file. So if you are creating custom taxonomy, you need to play with this function.
Thanks!