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

Wie Sie das Datum der letzten Aktualisierung Ihrer Beiträge in WordPress anzeigen

Hinweis der Redaktion: Wir erhalten eine Provision für Partnerlinks auf WPBeginner. Die Provisionen haben keinen Einfluss auf die Meinung oder Bewertung unserer Redakteure. Erfahre mehr über Redaktioneller Prozess.

Möchten Sie das Datum der letzten Aktualisierung für Ihre Beiträge in WordPress anzeigen?

Einige Websites aktualisieren ihre Beiträge regelmäßig. Indem Sie anzeigen, wann die einzelnen Beiträge aktualisiert wurden, stellen Sie sicher, dass Ihre Leser keine Inhalte verpassen, bauen Vertrauen auf und erhöhen die Autorität, um die SEO-Rankings zu verbessern.

In diesem Artikel zeigen wir Ihnen, wie Sie das Datum der letzten Aktualisierung Ihrer Beiträge in WordPress anzeigen können.

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

Warum wird das Datum der letzten Aktualisierung Ihrer Beiträge in WordPress angezeigt?

Wenn Besucher einen Beitrag oder eine Seite in Ihrem WordPress-Blog aufrufen, zeigt Ihr WordPress-Theme das Datum an, an dem der Beitrag veröffentlicht wurde. Das ist für die meisten Blogs und statischen Websites in Ordnung.

WordPress wird jedoch auch von Websites verwendet, auf denen alte Artikel regelmäßig aktualisiert werden. Bei diesen Veröffentlichungen ist es wichtig, das Datum und die Uhrzeit der letzten Änderung des Beitrags anzuzeigen.

Auf WPBeginner zum Beispiel aktualisieren wir unsere Tutorials regelmäßig und zeigen das Datum der letzten Aktualisierung auf jedem Beitrag an. Wenn wir nur das Veröffentlichungsdatum anzeigen würden, würden unsere Leser den Beitrag überspringen, weil sie annehmen, dass die Informationen nicht mehr aktuell sind.

Example of Showing the Update Date of a Post

Ein weiteres Beispiel sind Nachrichten-Websites. Sie aktualisieren oft alte Artikel, um neue Entwicklungen zu zeigen, Korrekturen hinzuzufügen oder Mediendateien einzufügen. Würden sie nur das Veröffentlichungsdatum anzeigen, würden ihre Nutzer diese Aktualisierungen verpassen.

Darüber hinaus ranken Google und andere Suchmaschinen gerne die aktuellsten Informationen. Die Anzeige des Aktualisierungsdatums hilft Googlebot und anderen, herauszufinden, wann der Beitrag das letzte Mal berührt wurde.

Schauen wir uns nun an, wie Sie das Datum der letzten Aktualisierung für Ihre Beiträge in WordPress anzeigen können.

Video-Anleitung

Subscribe to WPBeginner

Wenn Sie eine schriftliche Anleitung bevorzugen, dann lesen Sie bitte den folgenden Leitfaden weiter.

Wie Sie das Datum der letzten Aktualisierung Ihrer Beiträge in WordPress anzeigen

Für dieses Tutorial müssen Sie Code in Ihre WordPress-Dateien einfügen. Wenn Sie dies noch nicht getan haben, empfehlen wir Ihnen, einen Blick auf unsere Anleitung zum Kopieren und Einfügen von Code in WordPress zu werfen.

Methode 1: Anzeige des letzten Aktualisierungsdatums vor dem Beitragsinhalt

Für dieses Tutorial werden wir WPCode verwenden, da es der sicherste und einfachste Weg ist, benutzerdefinierten Code zu WordPress hinzuzufügen.

Die Bearbeitung der WordPress-Kerndateien Ihrer Website kann gefährlich sein, denn selbst kleine Fehler oder Tippfehler können Ihre Website zerstören. Daher empfehlen wir Ihnen, WPCode zu verwenden, um Codefragmente hinzuzufügen.

Zunächst müssen Sie das kostenlose WPCode-Plugin installieren und aktivieren. Weitere Informationen finden Sie in unserer Schritt-für-Schritt-Anleitung für die Installation eines WordPress-Plugins.

Sobald das Plugin aktiviert ist, navigieren Sie in Ihrem WordPress-Dashboard zu Code Snippets “ Snippet hinzufügen. Suchen Sie nach „Letztes Aktualisierungsdatum“ und fahren Sie mit der Maus über das Ergebnis mit dem Titel „Letztes Aktualisierungsdatum anzeigen“.

Der Code prüft, ob das Veröffentlichungsdatum und das Datum der letzten Änderung eines Beitrags unterschiedlich sind. Wenn dies der Fall ist, wird das Datum der letzten Änderung vor dem Inhalt des Beitrags angezeigt. (Das ist die Art und Weise, wie wir es hier bei WPBeginner machen).

Anschließend können Sie einfach auf die Schaltfläche „Snippet verwenden“ klicken.

WPCode searching for a snippet by name

Als nächstes sehen Sie den Bildschirm „Snippet bearbeiten“. WPCode hat das Snippet bereits für Sie konfiguriert.

Sie müssen nur den Schalter auf „Aktiv“ umlegen und auf „Aktualisieren“ klicken, wenn Sie bereit sind.

WPCode edit snippet page and activate code

Da das Codeschnipsel das Aktualisierungsdatum unter Verwendung der Textstile Ihrer Website anzeigt, können Sie benutzerdefinierte CSS hinzufügen, um das Erscheinungsbild des Datums der letzten Aktualisierung zu gestalten. Hier ist ein kleines CSS-Snippet, das Sie als Ausgangspunkt verwenden können:

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

So sieht es auf unserer WordPress-Demo-Website aus.

Wenn Sie ein fortgeschrittener Benutzer sind und sich damit wohl fühlen, können Sie außerdem Folgendes in die Datei functions.php Ihres Themes einfügen.

Verbinden Sie sich einfach mit Ihrer Website per FTP oder über den Dateimanager Ihres WordPress-Hostings und suchen Sie die Datei im Ordner /wp-content/themes/yourthemename/ Ihrer Website.

$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 );
}

Methode 2: Hinzufügen des Datums der letzten Aktualisierung in Themenvorlagen

Sie können das aktualisierte Datum auch anstelle des Veröffentlichungsdatums oder direkt darunter anzeigen.

Bei dieser Methode müssen Sie bestimmte WordPress-Theme-Dateien bearbeiten. Welche Dateien Sie bearbeiten müssen, hängt von dem von Ihnen verwendeten Theme ab.

Viele WordPress-Themes verwenden ihre eigenen Template-Tags, um die Metadaten eines Beitrags wie Datum und Uhrzeit anzuzeigen. Andere Themes verwenden Inhaltsvorlagen oder Vorlagenteile. Einfachere Themes verwenden single.php, archive.php und andere Vorlagendateien, um Inhalte und Metadaten anzuzeigen.

Sie müssen nach der Datei suchen, die den Code für die Anzeige von Datum und Uhrzeit enthält. Sie können dann entweder diesen Code durch den folgenden Code ersetzen oder ihn direkt nach dem Code für Datum und Uhrzeit Ihres Themas einfügen.

$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> "; } 

Sie können die Zeilen 6 und 7 löschen, wenn Sie den Zeitpunkt der Aktualisierung des Beitrags nicht anzeigen möchten.

So sah es auf unserer Demo-Website aus. Beim Twenty Twenty-One-Theme haben wir den Codeschnipsel in die Datei template-tags.php im Ordner inc eingefügt.

Preview of Displaying Update Date by Editing Template

Wie Sie das Datum der letzten Aktualisierung Ihrer Beiträge in WordPress verwalten

Jetzt, wo wir das Datum der letzten Aktualisierung für jeden Beitrag hinzugefügt haben, wird es automatisch aktualisiert, wenn Sie eine Änderung an einem Beitrag vornehmen. Aber was ist, wenn Sie nur eine kleine Korrektur und keine vollständige Aktualisierung vornehmen, z. B. einen Rechtschreibfehler korrigieren oder ein Tag hinzufügen?

Bei kleinen Änderungen ist es in der Regel am besten, das Änderungsdatum aus SEO-Sicht unverändert zu lassen. Ihre Leser sehen dann das Datum, an dem die letzte größere Aktualisierung des Beitrags vorgenommen wurde.

Hier sind ein paar Plugins, mit denen Sie einen Beitrag aktualisieren können, ohne das Änderungsdatum zu ändern.

Methode 1: Verwendung des Plugins „Geändertes Datum begrenzen

Zunächst müssen Sie das Plugin Limit Modified Date installieren und aktivieren. Weitere Details finden Sie in unserer Schritt-für-Schritt-Anleitung für die Installation eines WordPress-Plugins.

Hinweis: Dieses Plugin wurde in letzter Zeit nicht aktualisiert. Wir haben es jedoch mit der neuesten Version von WordPress getestet und es funktioniert immer noch.

Nach der Aktivierung sehen Sie beim Bearbeiten von Beiträgen ein neues Kontrollkästchen. Es trägt die Aufschrift „Das Änderungsdatum nicht aktualisieren“.

Checkbox Added by Last Updated Date

Wenn Sie einen Beitrag geringfügig aktualisieren, aktivieren Sie einfach dieses Kontrollkästchen, und das Änderungsdatum wird nicht geändert.

AIOSEO, auch bekannt als All in One SEO, ist das beste WordPress SEO Plugin auf dem Markt. Es hilft Ihnen, die Suchergebnisse zu verbessern, ohne komplizierten Jargon zu lernen, so dass Sie den Traffic Ihrer Website erhöhen können.

Mehr dazu erfahren Sie in unserem Leitfaden zur korrekten Einrichtung von All in One SEO für WordPress.

Wenn Sie AIOSEO bereits nutzen, um Ihr Suchmaschinenranking zu verbessern, können Sie damit auch das Änderungsdatum Ihrer Beiträge verwalten.

Nach der Aktivierung finden Sie bei der Bearbeitung von Beiträgen ein neues Kontrollkästchen mit der Bezeichnung „Das Änderungsdatum nicht aktualisieren“. Sie können das Kästchen ankreuzen, wenn Sie kleinere Änderungen an einem Beitrag vornehmen.

Dies ist nützlich, wenn Sie lediglich Tippfehler oder einfache Fehler korrigieren möchten. Sie können das Kontrollkästchen auch deaktivieren, wenn Sie Änderungen vornehmen, von denen Ihre Leser und Suchmaschinen erfahren sollen.

Checkbox Added by AIOSEO

Wir hoffen, dass dieses Tutorial Ihnen geholfen hat zu lernen, wie Sie das Datum der letzten Aktualisierung Ihrer Beiträge in WordPress anzeigen können. Vielleicht möchten Sie auch erfahren, wie Sie die Leistung von WordPress beschleunigen können, oder unsere Liste mit bewährten Tipps zur Steigerung der Besucherzahlen Ihres Blogs lesen.

Wenn Ihnen dieser Artikel gefallen hat, dann abonnieren Sie bitte unseren YouTube-Kanal für WordPress-Videotutorials. Sie können uns auch auf Twitter und Facebook finden.

Offenlegung: Unsere Inhalte werden von unseren Lesern unterstützt. Das bedeutet, dass wir möglicherweise eine Provision verdienen, wenn Sie auf einige unserer Links klicken. Mehr dazu erfahren Sie unter Wie WPBeginner finanziert wird , warum das wichtig ist und wie Sie uns unterstützen können. Hier finden Sie unseren redaktionellen Prozess .

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.

Das ultimative WordPress Toolkit

Erhalte KOSTENLOSEN Zugang zu unserem Toolkit - eine Sammlung von WordPress-bezogenen Produkten und Ressourcen, die jeder Profi haben sollte!

Reader Interactions

145 KommentareEine Antwort hinterlassen

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

    • WPBeginner Support says

      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.

      Admin

  2. Ajit Kumar says

    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 says

      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.

      Admin

  3. Imran says

    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 says

      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
      }

      Admin

  4. Adam Baney says

    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!

  5. MOHAMMED AQRABI says

    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 says

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

      Admin

  6. Raphael says

    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 says

      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.

      Admin

  7. Masrafi says

    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 says

      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.

      Admin

  8. Laura says

    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 says

      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 :)

      Admin

  9. Raman says

    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 says

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

      Admin

  10. Sanaullah Farooq says

    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 says

      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.

      Admin

    • WPBeginner Support says

      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

      Admin

  11. Shubham Davey says

    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 says

      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.

      Admin

  12. John says

    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 says

      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

      Admin

      • John says

        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 says

          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.

  13. Romeo says

    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.

  14. Kirsty says

    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 says

      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.

      Admin

    • WPBeginner Support says

      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.

      Admin

  15. Noz says

    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..

  16. Bill Hogsett says

    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 says

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

      Admin

  17. Herbert says

    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 says

      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.

      Admin

  18. Pete says

    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 says

      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.

      Admin

  19. Alexander says

    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 says

      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

      Admin

  20. Melanie says

    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 says

      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.

      Admin

  21. Christie says

    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.

  22. Laura says

    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.

  23. Sunny Mui says

    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();

  24. Jamie Brower says

    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.

  25. Daniele says

    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‘ );

  26. David says

    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.

  27. Vishal Mukherjee says

    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

  28. Victor Step says

    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.

  29. RUWAN says

    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

  30. Ludwig Sörmlind says

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

  31. Ebuka says

    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?

  32. peter says

    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…

  33. Steve W says

    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]

  34. Velyz Zhang says

    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

  35. Adarsh Sahu says

    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.

  36. Filip says

    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?

  37. Chuks Ibe says

    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.

Eine Antwort hinterlassen

Danke, dass du einen Kommentar hinterlassen möchtest. Bitte beachte, dass alle Kommentare nach unseren kommentarpolitik moderiert werden und deine E-Mail-Adresse NICHT veröffentlicht wird. Bitte verwende KEINE Schlüsselwörter im Namensfeld. Lass uns ein persönliches und sinnvolles Gespräch führen.