Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #309312

    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.

    #309849

    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

    #309904

    Cheers Peter

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Add Date created and Updated to Categories, Pages and Posts’ is closed to new replies.