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

Hur man visar en lista över senast uppdaterade inlägg i WordPress

På WPBeginner visar vi senast ändrade datum istället för det ursprungliga publiceringsdatumet för alla våra artiklar. Vi tycker att det är en dålig idé att ta bort datum från dina blogginlägg i WordPress. Om du använder senast ändrade datum, kanske du vill visa en lista över dina senaste inlägg på din site. I den här artikeln visar vi hur du visar en lista över senast uppdaterade posts i WordPress.

Varje gång du uppdaterar ett post, lagrar WordPress datum och tid för den uppdateringen i posts-tabellen som senast uppdaterade datum. Vi visar hur du skapar en custom WordPress sökning för att lista dina senaste uppdaterade artiklar.

Copy and paste den här koden i ett site-specifikt plugin eller i functions.php-filen i ditt theme.


function wpb_lastupdated_posts() { 

// Query Arguments
$lastupdated_args = array(
'orderby' => 'modified',
'ignore_sticky_posts' => '1'
);

//Loop to display 5 recently updated posts
$lastupdated_loop = new WP_Query( $lastupdated_args );
$counter = 1;
$string .= '<ul>';
while( $lastupdated_loop->have_posts() && $counter < 5 ) : $lastupdated_loop->the_post();
$string .= '<li><a href="' . get_permalink( $lastupdated_loop->post->ID ) . '"> ' .get_the_title( $lastupdated_loop->post->ID ) . '</a> ( '. get_the_modified_date() .') </li>';
$counter++;
endwhile; 
$string .= '</ul>';
return $string;
wp_reset_postdata(); 
} 

//add a shortcode
add_shortcode('lastupdated-posts', 'wpb_lastupdated_posts');

Det är all. Om du nu vill visa senast uppdaterade posts i ditt temas template-filer, kan du använda det så här:

<?php 
if (function_exists(wpb_lastupdated_posts)) : 
wpb_lastupdated_posts();
endif;
?>

För att visa senast uppdaterade inlägg i WordPress-poster, pages och widgets, kan du använda shortcode [lastupdated-posts].

Det finns många olika sätt att sortera dina artiklar i WordPress. Notis: Förutom stigande, fallande och slumpmässig order kan du också visa posts efter löptid. Med den här artikeln kan du nu visa posts efter senast ändrade tid.

Hur skulle du använda detta på din site? Visar du ursprungligt publicerat datum eller senast ändrade datum? Låt oss veta genom att lämna en comment under.

Avslöjande: Vårt innehåll stöds av våra läsare. Det innebär att om du klickar på några av våra länkar, kan vi tjäna en provision. Se hur WPBeginner finansieras, varför det är viktigt, och hur du kan stödja oss. Här är vår editoriala process.

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.

Den ultimata WordPress-verktygslådan

Få GRATIS tillgång till vår verktygslåda - en samling WordPress-relaterade produkter och resurser som varje professionell användare bör ha!

Reader Interactions

38 kommentarerLämna ett svar

  1. Syed Balkhi

    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!

  2. Thomas Mirke

    Hi,
    i modified the code from ”modified” to ”date”. Then i noticed, that $lastupdated_loop->have_posts() is limited to the number of last posts which is presented on the main page. What is to do to get an (independent) number of f.e. 50 last posts? Instead of 6 as stored in the wp settings?

    • WPBeginner Support

      You should be able to change from line 12 of the code the section ’&& $counter < 5' and change the 5 to the number of posts you want to show.

      Administratör

      • Thomas Mirke

        Thank you, you can be sure, that this was the first thing i did. But notice that when you change the number in your code it is without result. Write f.e. ’&& $counter <20' – this does not work as there is f.e. 6 in the wordpress settings. So the question is how to overwrite those settings temporarily or to find any other solution that works without corresponding to the max-posts-per-page settings in wordpress.

        • WPBeginner Support

          With your theme overriding the query that way, you could try adding a comma to the end of line 6 and on the next line add ’posts_per_page’ => 20 to work on overriding your theme’s posts per page.

  3. Mewaram jat

    I want to show the list of the Latest updated Products, instead of Posts. is it possible? How?

    • WPBeginner Support

      You would want to check with your eCommerce plugin for what options they would recommend as they normally have a widget or similar option.

      Administratör

  4. Aditya

    How can I list more than 5 , say 30 post, recently modified post ?

    • WPBeginner Support

      If you are using the code from this article, you would change the 5 to a 30 for that :)

      Administratör

  5. Sascha

    Thank you for the instructions. That was exactly what I was looking for! Finally I can show the latest updates in my sidebar.

  6. rren

    How do you include only updated posts and exclude pages?

  7. Gwénaël

    Hi,

    It works well, but it does not respect the content permissions of the page. It turns all the content visible to anybody…

  8. Des

    Hi,

    I followed you ’How to Create a Custom WordPress Widget’, including ’Creating a Site-Specific WordPress Plugin’ and that works perfectly. Great tutorial as I now have the ’Hello world’ text displaying as a sidebar.

    But this one has me completely stumped. I followed the tutorial as best I could but it just displays my ’Hello world’ text, never any list of updated posts.

    Where in my custom plugin file do I put the function wpb_lastupdated_posts()? Where do I put the ’add_shortcode’ and where do I put the ’if (function_exists(wpb_lastupdated_posts)) : ’ statement?

    Many thanks,
    Des

  9. Patrick Fortino

    Code works but displays only 1 post?

  10. Gaurav Singh

    It is not working for genesis framework,

  11. sagun khadka

    How can i keep thumbnail of post when i keep it in widget ?

  12. Aida

    Thanks much, this article saved me. Code is working perfectly….

  13. Tommy

    Installed the code as stated. When using the short code- I add it to the bottom of the post. but when view the code- it puts the information on the top of the post. weird.

    • WPBeginner Support

      @Tommy, thanks for notifying us. We have updated the code. Please use the new code and it will resolve the issue.

      Administratör

    • Marceli

      Same request here. I’m interested in listing recently updated Pages + showing the last_modified date. Ideally with some excerpt or number of characters from page.

  14. jerik

    Great code, but is there anyway to get this exact same function but based on comments made by specific user (admin) and list the most recent comment made as the top of the threads in the list?

    Thanks!

  15. Alberto Aguilar

    Hi… great post…. Yet I was wondering if you could give me a hand on something: I need to take the picture and title of the last three published posts and arrange them in some kind of Gallery (Just to show the latest three published articles, Any idea if there’s a plugin for that, I assume I can use the code you just placed above, but Im not quite sure on the DB structure)

    Thanks in advance… =)

  16. Mark Devlin

    Hi, how do I add code to display the category and the user who made the update?

  17. Norberto Vargas

    The second code?

  18. Norberto Vargas

    Hello

    By the way nice article, so I have a doubt.

    Where to put this code:

    ””

    thank you

    • WPBeginner Support

      In your template files where you want to display the list of last updated posts.

      Administratör

  19. Pierre Guimond

    I do not know how to change the office location address on my WordPress web site. Try as I may, I cannot reach it to change it. http://www.mastheadpa.ca I would appreciate simple and straight answer. I can do most of the upkeep but that address change eludes me and i have not seen the key in the WP information and tutorials. help.

    • WPBeginner Support

      @Pierre your office location is stored inside a widget. Inside your WordPress admin area, go to Appearance » Widgets. On your right hand column you will see a list of widgets currently in use on your site. Look for Footer Widget Area and there you will see Get in Touch widget which you can edit and save your changes.

      Administratör

  20. Steve

    Hi, love this article but I don’t quite get what is meant to be updated when you mention ’use it like this:
    1

    Which file is this?

    Steve

    • WPBeginner Support

      Some users might want to display last updated posts into different templates of their WordPress themes. Those users can use this code to add it. Other users can use the shortcode to add it in their posts, pages, and widgets.

      Administratör

  21. erricgunawan

    Instead of using $counter for your loop, why don’t you just use the 'posts_per_page' attribute on the WP_Query args ?

    Mine goes like this:

    $lastupdated_args = array(
    ’orderby’ => ’modified’,
    ’ignore_sticky_posts’ => 1,
    ’posts_per_page’ => 5
    );

    Also, when I try the above code, it only give me one last modified post (not five as it should be).
    Wonder why …

  22. Mary

    I love your articles but this one is way over my head. Are there any plugins for this? :)

    Sorry but I dont know the ”innards” of the website and have broken my site when I tried a few things.

    It is a great idea though.Thanks for all you great work. Mary

    • Rudd

      The code above is actually a ’plugin’. Simply copy and paste the first code in functionality plugin. Then, there are two ways to display the list of posts, either using template tag or the easiest, using [lastupdated-posts] shortcode.

      • Tommy

        yes. but why does it add the content above the post wen using it as a short code?

        • tommy

          I want the content- then the shortcode info.

Lämna ett svar

Tack för att du väljer att lämna en kommentar. Tänk på att alla kommentarer modereras enligt våra policy för kommentarer, och din e-postadress kommer INTE att publiceras. Vänligen använd INTE nyckelord i namnfältet. Låt oss ha en personlig och meningsfull konversation.