Reply To: How to display the page title on category pages

Homepage Community Forums Epik Theme Support How to display the page title on category pages Reply To: How to display the page title on category pages

#6202
Eric
Customer

    I did a quick Google Search and came across this –

    add_action('genesis_before_loop', 'add_title');
    function add_title() {
    if(is_page_template( 'page_blog.php' )) {
    the_title( '<h1>', '</h1>');
    } }

    Try and add that to your functions.php file and it should add the titles on the Blog pages. Just so you know, this is the way Genesis (the framework) is setup. So the same thing would happen on any Genesis Child theme…..but the above code should add it. Let me know if that works.


    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com