2016-08-19, 17:24:17
@shawn_a I think it's get_page_title. Since 3.3.6: https://github.com/GetSimpleCMS/GetSimpl...ssues/1046
@Hypertexter
If you want to use html in titles, in your template change
by
(Though it may be better checking for the blog slug and rendering the link...)
@Hypertexter
If you want to use html in titles, in your template change
Code:
<?php get_page_title(); ?>
Code:
<?php echo html_entity_decode(get_page_title(false)); ?>
(Though it may be better checking for the blog slug and rendering the link...)