-
AuthorPosts
-
December 23, 2019 at 4:13 pm #1168755
Hi guys,
I would like to add the text “Last update on” in a single post.I followed the instruction you gave on a previous ticket – https://kriesi.at/support/topic/change-blog-date-to-last-updated-instead-of-date-published/
However I could not find the code to replace on line 366 on postslider.php file so before doing any mistakes I will ask your help.
I have 2 options.
OR
-
I can fix the instructions you have pointed out on the WPbeginner website.
https://www.wpbeginner.com/wp-tutorials/display-the-last-updated-date-of-your-posts-in-wordpress/The last solution could be fine but instead of adding a “last updated on” text on the single post, I can see this on each page of the site.
I will remove now the PHP code found on the WPbeginner
function wpb_last_updated_date( $content ) {
$u_time = get_the_time(‘U’);
$u_modified_time = get_the_modified_time(‘U’);
if ($u_modified_time >= $u_time + 86400) {
$updated_date = get_the_modified_time(‘F jS, Y’);
$updated_time = get_the_modified_time(‘h:i a’);
$custom_content .= ‘<p class=”last-updated”>Aggiornato il ‘. $updated_date .’
‘;
}$custom_content .= $content;
return $custom_content;
}
add_filter( ‘the_content’, ‘wpb_last_updated_date’ );Please, could you help?
thanks,
Marco- This topic was modified 4 years, 11 months ago by marcoabis81. Reason: Adding login details
December 29, 2019 at 11:26 am #1169061Hi marcoabis81,
We apologize for the delay.
Please copy loop-index.php (in the Enfold theme) and paste it in the includes folder of your child theme.
find this code (it should be in line 305):echo "<time class='date-container minor-meta updated' >".get_the_time(get_option('date_format'))."</time>";
replace it with:
echo "<time class='date-container minor-meta updated'>Last update on ".get_the_modified_time(get_option('date_format'), $the_id)."</time>";
Let us know if this helps.
Best regards,
NikkoJanuary 2, 2020 at 5:18 pm #1169148Absolutely amazing,
it works,
much appreciated and have a good new year :-)Marco
January 2, 2020 at 5:30 pm #1169161 -
AuthorPosts
- The topic ‘Single post "last updated on"’ is closed to new replies.