Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
Coupe WPB
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Comment afficher la dernière date de mise à jour de vos publications dans WordPress

De nombreux sites mettent à jour leurs publications régulièrement, mais si les lecteurs ne savent pas quand le contenu a été mis à jour pour la dernière fois, ils risquent de ne pas lui accorder autant de confiance. L’affichage de la date de dernière mise à jour peut contribuer à renforcer la confiance de votre public et à améliorer votre référencement.

La date de dernière mise à jour montre aux internautes que les informations sont à jour, ce qui les encourage à s’engager dans votre contenu. Cependant, l’ajout de cette fonctionnalité à votre site WordPress n’est pas toujours simple, surtout si vous êtes novice en matière de personnalisation de thèmes.

Après avoir testé diverses extensions, nous avons trouvé que WPCode était le plus simple et le plus efficace pour faire le travail. Dans ce guide, nous vous montrerons comment afficher facilement la date de dernière mise à jour sur vos publications WordPress.

How to Display the Last Updated Date of Your Posts in WordPress

Pourquoi afficher la dernière date de mise à jour de vos publications dans WordPress ?

Lorsque les internautes consultent un article ou une page de votre blog WordPress, votre thème WordPress affiche la date de publication de l’article. Cela convient à la plupart des blogs et des sites statiques.

Cependant, WordPress est également utilisé par des sites où d’anciens articles sont régulièrement mis à jour. Dans ces publications, il est important d’afficher la date et l’heure de la dernière modification de l’article.

Par exemple, sur WPBeginner, nous mettons régulièrement à jour nos tutoriels et affichons la date de  » dernière mise à jour  » sur chaque publication. Si nous affichions uniquement la date de publication, nos lecteurs iraient à/auprès de la publication, supposant que l’information est périmée.

Last Updated in WPBeginner

Les sites d’information constituent un autre exemple. Ils mettent souvent à jour d’anciennes stories pour présenter de nouveaux développements, ajouter des corrections ou insérer des fichiers multimédias. S’ils n’affichaient que la date de publication, leurs utilisateurs manqueraient ces mises à jour.

En outre, Google et les autres moteurs de recherche aiment classer les informations les plus récentes. L’affichage de la date de mise à jour aide Googlebot et d’autres à savoir quand la publication a été touchée pour la dernière fois.

Comment afficher la dernière date de mise à jour de vos publications dans WordPress

Ce tutoriel nécessite l’ajout de code dans vos fichiers WordPress. Si vous n’avez jamais fait cela auparavant, nous vous recommandons de consulter notre guide sur la façon de copier et coller du code dans WordPress.

Dans cette optique, nous allons vous présenter 2 méthodes pour afficher facilement la date de dernière mise à jour de vos publications dans WordPress. Vous pouvez aller de l’avant et cliquer sur les liens de saut ci-dessous pour utiliser votre méthode préférée.

C’est parti !

Méthode 1 : Afficher la date de dernière mise à jour avant le contenu de l’article

Nous allons utiliser WPCode pour ce tutoriel, car c’est le moyen le plus sûr et le plus facile d’ajouter du code personnalisé à WordPress.

Modifier les fichiers principaux de votre site WordPress peut être dangereux car même de petites erreurs ou des fautes de frappe peuvent endommager votre site. Nous vous recommandons donc d’utiliser WPCode pour ajouter des extraits de code.

Tout d’abord, vous devrez installer et activer l’extension gratuite WPCode. En savoir plus, consultez notre guide étape par étape sur l’installation d’une extension WordPress.

WPCode's homepage

Note : La version premium de WPCode a plus de fonctionnalités ! Donc, si vous aimez la version gratuite, vous pouvez mettre à niveau et profiter d’une bibliothèque de cloud privé, d’un addon de pixels de conversion, de contrôles d’accès intégrés et d’un support multi-site. Pour en savoir plus sur l’extension, vous pouvez consulter notre avis complet sur WPCode.

Une fois l’extension activée, accédez à Code Snippets  » + Add Snippet dans votre tableau de bord WordPress. Recherchez « date de dernière mise à jour » et passez votre souris sur le résultat intitulé « Afficher la date de dernière mise à jour ».

Le code vérifie si la date de publication et la date de dernière modification d’un message sont différentes. Si c’est le cas, il affiche la date de dernière modification avant le contenu de la publication. (C’est ainsi que nous procédons ici à WPBeginner).

Ensuite, il vous suffit de cliquer sur le bouton « Utiliser l’extrait ».

WPCode searching for a snippet by name

Ensuite, vous verrez l’écran « Modifier l’extrait ». WPCode a déjà configuré l’extrait pour vous.

Il vous suffit de permuter le commutateur sur « Actif » et de cliquer sur « Mise à jour » lorsque vous êtes prêt.

WPCode edit snippet page and activate code

Comme l’extrait de code affichera la date de mise à jour en utilisant les styles de texte du corps de votre site, vous pouvez ajouter un CSS personnalisé pour styliser l’apparence de la date de dernière mise à jour.

Voici un petit extrait de CSS que vous pouvez utiliser comme point de départ :

.last-updated {
    font-size: small;
    text-transform: uppercase;
    background-color: #fffdd4;
} 

Et voici ce que cela donne sur notre site WordPress de démonstration :

Last updated example on a live website

En outre, si vous êtes un utilisateur/utilisatrice avancé/e et que vous vous sentez à l’aise pour le faire, vous pouvez ajouter ce qui suit au fichier functions.php de votre thème.

Il suffit de se connecter à votre site via FTP ou via le gestionnaire de fichiers de votre hébergement WordPress et de trouver le fichier dans le dossier /wp-content/themes/yourthemename/ de votre site.

$u_time          = get_the_time( 'U' );
$u_modified_time = get_the_modified_time( 'U' );
// Only display modified date if 24hrs have passed since the post was published.
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' );

	$updated = '<p class="last-updated">';

	$updated .= sprintf(
	// Translators: Placeholders get replaced with the date and time when the post was modified.
		esc_html__( 'Last updated on %1$s at %2$s' ),
		$updated_date,
		$updated_time
	);
	$updated .= '</p>';

	echo wp_kses_post( $updated );
}

Méthode 2 : Ajouter la date de dernière mise à jour dans les modèles de thèmes

Vous pouvez également afficher la date de mise à jour à la place de la date de publication ou juste en dessous.

Cette méthode nécessite que vous modifiiez les fichiers spécifiques du thème WordPress. Les fichiers à modifier dépendent de votre thème.

De nombreux thèmes WordPress utilisent leurs propres marqueurs de modèles pour afficher les métadonnées des publications, telles que la date et l’heure. D’autres thèmes utilisent des modèles de contenu ou des éléments de modèle. Les thèmes plus simples utilisent single.php, archive.php et d’autres fichiers de modèle pour afficher le contenu et les méta-informations.

Vous devez rechercher le fichier qui contient le code responsable de l’affichage de la date et de l’heure. Ensuite, vous pouvez soit remplacer ce code par le code suivant, soit l’ajouter juste après le code de la date et de l’heure de votre thème.

$u_time = get_the_time('U'); 
$u_modified_time = get_the_modified_time('U'); 
if ($u_modified_time >= $u_time + 86400) { 
echo "<p>Last modified on "; 
the_modified_time('F jS, Y'); 
echo " at "; 
the_modified_time(); 
echo "</p> "; } 

Si vous ne souhaitez pas afficher l’heure de mise à jour de la publication, supprimez les lignes 6 et 7.

Voici à quoi cela ressemble sur notre site de démonstration. Avec le thème Twenty Twenty-One, nous avons ajouté l’extrait de code au fichier template-tags.php à l’intérieur du dossier inc.

Preview of Displaying Update Date by Editing Template

Astuce bonus : Comment gérer la date de dernière mise à jour de vos publications

Maintenant que nous avons ajouté la date de dernière mise à jour pour chaque publication, celle-ci sera automatiquement mise à jour chaque fois que vous apporterez une modification à une publication. Mais qu’en est-il si vous apportez uniquement une petite correction plutôt qu’une mise à jour complète, par exemple si vous corrigez une faute d’orthographe ou si vous ajoutez un identifié ?

Pour les petites modifications, il est généralement préférable de laisser la date de modification inchangée du point de vue du référencement. Vos Lecteurs verront alors la date à laquelle la dernière mise à jour majeure a été apportée à la publication.

AIOSEO, également connu sous le nom de All in One SEO, est la meilleure extension WordPress de référencement sur le marché. Il vous aide à améliorer le classement dans les moteurs de recherche sans apprendre un jargon compliqué, afin que vous puissiez augmenter le trafic de votre site.

AIOSEO's homepage

Si vous utilisez déjà AIOSEO pour améliorer votre classement dans les moteurs de recherche, vous pouvez également l’utiliser pour gérer la date de modification de vos publications.

Si ce n’est pas le cas, la première chose à faire est d’installer et d’activer AIOSEO. Vous pouvez en savoir plus dans notre guide sur la façon de configurer correctement All in One SEO pour WordPress.

Remarque : vous pouvez utiliser la version gratuite d’AIOSEO pour effectuer cette tâche. Cependant, en achetant la version pro, vous pourrez accéder à des fonctionnalités avancées telles que les outils d’IA de ChatGPT, le suivi de la dégradation du contenu, un gestionnaire de redirection et un assistant de liens internes. En savoir plus, vous pouvez lire notre avis complet sur AIOSEO.

Lors de l’activation, vous trouverez une nouvelle case à cocher intitulée « Ne pas mettre à jour la date de modification » lors de la modification des publications. Vous pouvez cocher cette case lorsque vous apportez des modifications mineures à une publication.

Checkbox Added by AIOSEO

Cette fonction est utile pour corriger les fautes de frappe ou les erreurs simples, et vous pouvez décocher la case lorsque vous apportez des modifications dont vous souhaitez que vos lecteurs et les moteurs de recherche soient informés.

Tutoriel vidéo

Besoin d’un guide visuel ? Dans ce cas, vous apprécierez peut-être notre tutoriel vidéo rapide sur WPCode :

Subscribe to WPBeginner

Nous espérons que ce tutoriel vous a aidé à apprendre comment afficher la date de dernière mise à jour de vos publications dans WordPress. Vous voudrez peut-être aussi apprendre comment vérifier si votre site est optimisé pour les moteurs de recherche ou explorer notre liste de contrôle d’experts pour réaliser un audit SEO WordPress afin de booster votre classement.

Si vous avez aimé cet article, veuillez alors vous abonner à notre chaîne YouTube pour obtenir des tutoriels vidéo sur WordPress. Vous pouvez également nous trouver sur Twitter et Facebook.

Divulgation : Notre contenu est soutenu par les lecteurs. Cela signifie que si vous cliquez sur certains de nos liens, nous pouvons gagner une commission. Consultez comment WPBeginner est financé, pourquoi cela compte et comment vous pouvez nous soutenir. Voici notre processus éditorial.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

L'ultime WordPress Toolkit

Accédez GRATUITEMENT à notre boîte à outils - une collection de produits et de ressources liés à WordPress que tous les professionnels devraient avoir !

Reader Interactions

144 commentairesLaisser une réponse

  1. Daniel M.

    Simply echo « the_modified_date() » where you want to show it in your theme files.

    • WPBeginner Support

      That is better used within the WordPress loop if you want to use it, we recommend the second method in this guide if you wanted something similar.

      Administrateur

  2. Ajit Kumar

    Hey, I am using WordPress Twenty Twenty-Three Theme I have used the above code which you provide in my Function.php Now the latest update date showing on all posts, I was waiting for Google crawling, and after Google crawled the data showed the Published date instead of Updated date.

    How to get an Updated date on my Google Rich Snippet Please help I am very Thank full to you! :)

    Thank You So Much!

    • WPBeginner Support

      If you remove the published date from your posts that can help have Google show the updated date instead but there is not a guarantee of the date that Google will show as Google determines which one it decides to show.

      Administrateur

  3. Imran

    I tried this but it shows both original published date and last updated date.
    I want to show
    if the post is update- show updated date
    if not
    just show original date.
    How to do this.

    • WPBeginner Support

      For what you’re wanting you would want to add an else statement that had your theme’s original option to display the date using the method to edit your theme template from this article. An example of what you would add is the code below:


      else {
      // Theme's code
      }

      Administrateur

  4. Adam Baney

    The code to insert into a theme file worked perfectly! I added it as a function in my functions.php file, and called it on the page. The allows me to update the code in 1 place, and it will update across my site, in case I want to show the last modified date for multiple post types or in custom templates. Thank you!

    • WPBeginner Support

      Glad our guide was helpful!

      Administrateur

  5. MOHAMMED AQRABI

    I have a question, for example, if I now display the date of the last update of the article and I have 800 articles and all the dates have changed for all articles at once, will this affect or harm the search engines

    • WPBeginner Support

      It should not cause an issue, you would mainly need to give time for Google to recrawl your updated dates.

      Administrateur

  6. Raphael

    Thank you so much for this tutorial!
    I used the first method and it perfectly works for me but I am having one issue, the post is still showing the published date on google search instead of the latest update date.
    How can I do away with this?

    • WPBeginner Support

      It would depend on how recently it has changed, if you just added the updated date you would need to wait for Google to recrawl your post.

      Administrateur

  7. Masrafi

    Hello, this was a very helpful blog and video. But when I apply, it shows the end of the content. please tell me the solution

    • WPBeginner Support

      You may need to check with the support for your specific theme to check the placement of your code in case your theme has a different method for displaying the publish date.

      Administrateur

  8. Dean

    s there a way to hide this on pages and only show on blog posts ? tx

    • WPBeginner Support

      You would want to use the second method in this article for that :)

      Administrateur

    • Gianluigi Filippelli

      if ( get_post_type() ‘page’ ){
      return $custom_content;
      } else {
      return $content;
      }

  9. Laura

    Just a quick question, the updated date shows at the bottom of my posts, as opposed to the top.

    Is there a solution to ensure the new updated date is at the beginning of the posts?

    • WPBeginner Support

      It would depend on how your theme is designed. If you reach out to your theme’s support they should be able to help you place it in the correct location :)

      Administrateur

  10. Raman

    Hi Team,

    I am able to print updated date but it’s getting rendered below the featured image, can you advise how can print the udpated date on the top of the featured image, means right below the title.

    • WPBeginner Support

      You would want to reach out to the support for your specific theme and they should be able to assist with that placement.

      Administrateur

  11. Sanaullah Farooq

    Hello,

    I want to show only post update date on page and in search results instead of publish date. How can I achieve that? I have tried everything.

    • WPBeginner Support

      If you are unable to remove the published date then we would recommend reaching out to your specific theme’s support and they would be able to help you remove that.

      Administrateur

  12. Rachel Joan

    OMG…
    Thank you for saving my hours…
    Thank you for this code.
    You are the problem solver.

    • WPBeginner Support

      Glad our guide was helpful :)

      Administrateur

  13. Danyl

    Hi how about list of users who updated the post?

    • WPBeginner Support

      You would want to take a look at your post revisions for that information :)

      Administrateur

  14. ali karimi

    thanks a lot for your help

    • WPBeginner Support

      You’re welcome :)

      Administrateur

  15. Ankit Sheoran

    Last update is not showing in google what should i do but showing in my website

    • WPBeginner Support

      If the change is recent, you would need to wait for Google’s cache to clear. Otherwise, you would want to check with your theme’s support to ensure they are not setting the specific publish date elsewhere

      Administrateur

  16. Shubham Davey

    What if I want to show only the updated date & not the published date? The method shown here displays both published & updated date, I don’t want that, just updated date, that’s it.

    • WPBeginner Support

      It would depend on your theme but you would use method 2 to replace the display of the last edited date. The location of that code varies from theme to theme.

      Administrateur

  17. Charles

    Hello I applied the code but it keeps popping out error

  18. John

    The PHP code worked great, but how do I limit it to post pages only. Once I added the code to functions.php it displayed last updated on both pages and posts. What do I need to add to limit it to just posts?

    Thanks,

    John

    • WPBeginner Support

      To limit it to posts you would use an if statement after the function:

      function wpb_last_updated_date( $content ) {
      if ( is_single() ) {

      and add a closing } above the add_filter line

      Administrateur

      • John

        Thank you for the quick response!

        I tried the code, but it prevents my blog pages from rendering. However, my blog post pages continue to work and display last updated date.

        Do you have any idea why that is?

        • WPBeginner Support

          You may want to reach out to your theme’s support, this code shouldn’t prevent the rendering of content unless something theme-specific is conflicting with it.

  19. Romeo

    Still worked in September 2019 for one of my sites. For my Genesis based site, I needed to use the Genesis Simple Edits plugin to easily modify the post info since they put the post info in an array, instead of in a function.

    • WPBeginner Support

      Thanks for sharing what worked for you

      Administrateur

  20. sarkariyojanainfo

    Thank you for this post, I tried it and its working Fine..

    • WPBeginner Support

      You’re welcome, glad our article could be helpful :)

      Administrateur

  21. Kirsty

    Hi there,

    I’m having the opposite problem – I have a new website and have backdated my posts to the date that they were originally created, but my site is showing the dates that they were last updated.

    Any advice on how to fix this, or if there is a link to another tutorial for that somewhere would be greatly appreciated, I can’t find one!

    Thanks.

    • WPBeginner Support

      By default, WordPress should work like this, you may want to reach out to the support for the specific theme you’re using to see if they have a setting for this.

      Administrateur

  22. Giacomo

    Hi, will it impact SEO if I show both the posted, and the updated date?

    Thanks!

    • WPBeginner Support

      Unless I hear otherwise, we haven’t tested the SEO impact of having both displaying at the same time but your post’s metadata should let search engines know which date to look at.

      Administrateur

  23. Noz

    Thanks.. is there a way to show the Last modified field Only After certain time from date of post?
    i.e if the next day you edited a post for some reason, doesn’t have to show as modified..

    • WPBeginner Support

      Not at the moment but we can certainly look into an option to do that.

      Administrateur

  24. Bill Hogsett

    i have a page that lists books that I have read and I update the page when I start a new book.

    On the sit’s homepage I have a menu link to the book list. I would like to have button, or maybe just text, next to the homepage link showing the last time the book list page has been updated.

    Any suggestions?

    Thanks.

    • WPBeginner Support

      You could either add a text widget or edit the menu item’s title manually when you update the page.

      Administrateur

  25. Herbert

    I am using Method 1 since Method 2 doesnt seem to work on my theme. Is there a way to have the text be displayed n the bottom of the post? Your response would mean a lot. Thank you

    • WPBeginner Support

      For relocating the publish date you would want to reach out to the support for the theme you are currently using for how to do that with your theme.

      Administrateur

  26. Pete

    This is great. Quick question, I can’t seem to get it to only show on post and not pages? I tried to add method 2 to the single post template, but that didnt seem to work. It doesnt contain a bit about date or time. Even though the date is displayed in header.
    Should i be adding more to show date and time in the single post template?

    • WPBeginner Support

      Your specific theme may be pulling that information from another file. If you reach out to your specific theme’s support they should be able to assist.

      Administrateur

  27. Tudor

    Hi, how to make last updated date show only on specific pages?

  28. Alexander

    Hi, thanks so much for this guidance freely given.

    Suppose I do not want to show the published date but only the last updated date? How can I modify the code to achieve that, please?

    Thanks
    Alexander

    • WPBeginner Support

      You would need to modify your theme’s templates, as each theme is different you would need to check with your theme’s support for where the published date is located

      Administrateur

  29. Melanie

    Hi,

    I found your information helpful. But perhaps you can answer two more questions:

    When is it best to completely update a post aka republish it versus just provide the « last updated » information? Sometimes republishing something feels like cheating – it’s a lazy way to update my blog.

    I’ve also read that having two dates on a post can confuse Google when it is crawling your site. Of course, I would like for them to pick up the latest date so it shows next to the description in the search results. Is there a way to show one or the other?

    Right now, I have removed the entry date on posts while employing the « last updated » date (using css for both). Problem is that if I haven’t updated something, then it shows no date which is also a no-no according to the post above.

    A LOT to address here, I know! But if you would be so kind to consider a reply, I would appreciate it.

    Thanks!

    • WPBeginner Support

      Hi Melanie,

      It is best to simply update a post if changes are minor. However, if a post is completely outdated and a rewrite contains all new information, then you can publish it as a new article and redirect your old article.

      Administrateur

  30. Dat Nguyen

    Thank you.
    It so helpful.
    I need it.

  31. Christie

    How do you keep the « last updated » from appearing at the top of specific pages. I really only want it on blog posts, not my homepage, contact page, etc.? thanks.

  32. Laura

    This code is excellent. Thanks so much. I’m following pretty much all of it, but I’m just curious what the 86400 number added to the updated time is doing.

    Thanks in advance.

    • WPBeginner Support

      Hi Laura,

      86400 is number of seconds in a day. The code checks if the modified time is larger than or equals to a day.

      Administrateur

  33. Morsi

    Hello, can i use the first méthod and using the translation file to translate it into my language ?

  34. Sunny Mui

    Thanks, this was helpful for implementing last updated text on my blog.

    One point, the theme specific code is actually incorrect. You forgot the « echo get_… » before the get_the_modified_time() function.

    Right now it just says:

    the_modified_time(‘F jS, Y’);
    echo  » at « ;
    the_modified_time();

    When it should say:

    echo get_the_modified_time(‘F jS, Y’);
    echo  » at « ;
    echo get_the_modified_time();

  35. Jamie Brower

    Can you please tell me how to post the modified date AFTER the content. I tried using a in the footer.php but then it just displays before the content AND in the footer. I would just like the footer to display.

  36. Daniele

    Thanks guys, it works like a charm! A so so cool tip!

    If you want to add the last modified ONLY ON POSTS, that works for me (I’m Italian and I edited it not showing the hour and modified the date order):

    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(‘d F Y’);
    $updated_time = get_the_modified_time(‘H:i’);
    $custom_content .= ‘Articolo aggiornato il ‘. $updated_date .  »;
    }
    if(is_single()){
    $custom_content .= $content;
    return $custom_content;
    }
    return $content;
    }
    add_filter( ‘the_content’, ‘wpb_last_updated_date’ );

    • David Aguirre

      Dude, this is gold, I don’t know why anyone has thanked you before.
      Thank you :D

    • PET

      Yeah, good stuff! Thanks bro!

  37. David

    I have applied above all settings on my website and its working fine.

    But I have one question that when two dates shown above content then which date will be shown in google search engine result page? Please provide answer because I have done all this only for showing last update date in google search engine result page.

  38. ahmed

    i like this it is very good and easy to install with genesis child theme function.php thank you

  39. Vishal Mukherjee

    Hi,
    Added the following code to functions.php

    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 .= ‘Last updated on ‘. $updated_date . ‘ at ‘. $updated_time . »;
    }

    $custom_content .= $content;
    return $custom_content;
    }
    add_filter( ‘the_content’, ‘wpb_last_updated_date’ );

    Works fine for posts but … the same is displayed in Pages also.
    I want it only for post. or if pages then at a different place eg End og the page article.

    Best Wishes
    Vishal Mukherjee

  40. Victor Step

    Thank you for the code.
    However, there is a common problem that Google pulls the date of the embedded youtube video instead of the updated blog post date. In your case, I see that the search results do in fact show the correct date, and not the embedded video’s upload date. How did you achieve this? Thank you.

  41. RUWAN

    hello, I want only show updated date like your website, not both(updated and published date), when I add your code to site then its shows that both dates, please guide me to show only that updated date. thanks

  42. Ludwig Sörmlind

    Thank you for this post, I tried it and it works like a charm. I went for the site-specific plugin-option.

  43. Ebuka

    Thanks a lot it worked perfectly. but for the custom CSS only the « text-transform » worked on my theme. Other CSS like; color, text-weight, background-color etc. did not work. Please is there any possible way around it?

  44. peter

    hi syed ,am peter. the code work on my theme, but when i tried to add css style , i mean this code .last-updated {
    font-size: small;
    text-transform: uppercase;
    background-color: #fffdd4;
    }

    my site goes blank. please what do i do to restore my website…

  45. Steve W

    Thank you for this tip. I actually turned it into a shortcode so that it only shows up where I want it, and not on every page or post. [last_updated]

  46. Velyz Zhang

    Hi,
    Actually the code is work, but the result showing some numbers before « last update »

    1494555840LAST UPDATED ON JUL 9, 2017

    Every single post that I updated showing different numbers like that. Any one can help me?

    Thank you

  47. mathhew

    Can you please explain how to apply it for genesis framework. i tried it but it didn’t worked

  48. Adarsh Sahu

    Hey I just tried this method it worked fine for me but the problem is that now my post is not showing any date in google search please help me i also want to show last updated date in Google search when anyone searches my content.

  49. Filip

    Hi
    The code work great, thank you!
    Can you tell us how to edit published time and add Published by « author » like in your images?

  50. Chuks Ibe

    I tried using this for my blog but it is also showing the « Last Updated » in the latest post page and its making it look like Last updated is part of the post content.

    i need help to correct this thanks.

Laisser une réponse

Merci d'avoir choisi de laisser un commentaire. Veuillez garder à l'esprit que tous les commentaires sont modérés selon notre politique de commentaires, et votre adresse e-mail ne sera PAS publiée. Veuillez NE PAS utiliser de mots-clés dans le champ du nom. Ayons une conversation personnelle et significative.