I’d like to add meta data to my pages and Archive pages in Enfold. Also I like to add a page modified date to all categories, pages and posts.
Any guidance on how to do it would be great
With this being part of the google guidelines for panda I think it could be of use to add it to the theme.
Hey gregdickson!
Open up enfold / includes / loop-index.php and replace:
echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
echo "<span class='text-sep text-sep-date'>/</span>";
with
echo "<time class='date-container minor-meta' $markup>".get_the_time(get_option('date_format'))."</time>";
echo "<span class='text-sep text-sep-date'>/</span>";
echo "<time class='date-container minor-meta updated' $markup>Modified: ".get_the_modified_date((get_option('date_format'))."</time>";
echo "<span class='text-sep text-sep-date'>/</span>";
Cheers!
Peter
Cheers Peter