date update

Posted in: Newspaper
Post count: 22

Hello, how can I insert (see link) date updated automatically each time you insert the post? the character must be of the same theme color (green)

thanks

http://www.cataniaoggi.com/_/wp-content/uploads/2013/12/data1.jpg

Post count: 3343

Hello,
We have a date on the top bar you can enable from Theme customizer http://screencast.com/t/h7at4AjEMz

To change the color add this in style.css with your color

.td_data_time {
    color: #6B8C50 !important;
}

Thanks

Post count: 22

Ok, thank you very much, I wonder how I can also add time to upgrade. when I add a post, you update the time of entry … Monday, December 23, 2013 update at 20:05. This they use it all the newspapers online, to tell the browser what time the last update was made. If we can do, you tell me where to put the command string? thanks

Post count: 3343

Hello,
You can use this code

<?php $u_modified_time = get_the_modified_time('U');
if ($u_modified_time >= $u_time + 86400) {
echo "last update ";
the_modified_time('F jS, Y');
echo " at ";
the_modified_time(); } 
?>

Thanks

Post count: 22

thank you!! but where do I write this code? sorry and thanks!

  • This reply was modified 12 years by Calimero.
Post count: 3343
Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.