Archived topic
Latest-Posts Page Missing Title and Description.
3 replies · Started by Andrew on May 11, 2017
Latest-Posts Page Missing Title and Description. But on the category posts page, it is there. Please advise.
Hi Andrew,
By default there is no title if you are using the latest posts as your front page.
You can insert it using GP's before content hook though:
http://demo.generatepress.com/hook-locations/
https://docs.generatepress.com/article/hooks-overview/
So try adding this in the hook:
<?php if ( is_front_page() ) : ?>
<h1 class="entry-title" itemprop="headline">Latest Posts</h1>
<?php endif; ?>
Make sure Execute PHP is checked.
Let me know.
This might be better: https://generatepress.com/forums/topic/the-changes-are-not-displayed/#post-161128
Thanks Tom :)