How to Display Recent Posts in WordPress

[agentsw ua=’pc’]

Do you want to show your recent posts in WordPress? Displaying recent posts helps users easily discover your new content and spend more time on your site.

You can add a list of your latest posts in your sidebar, after the end of your post content, inside your post content with a shortcode, in your footer widget area, or anywhere else you like.

In this article, we will show you how to display recent posts in WordPress using a variety of different methods.

How to display recent posts in WordPress

Contents

Why Add Recent Posts in WordPress?

If you have been running a WordPress blog or website for a long time, then you may have some older articles getting regular traffic from search engines and other sources.

Many of these users will check out the information they were looking for and leave. More than 75% of those visitors will never see your website again.

To keep users coming back to your website, you need to ensure that they spend more time on your website.

One way to do this is by showing them other recent posts that they should see. This helps users uncover more content on your website, which leads to them spending more time on your website.

As users view more pages, this gives you time to convince them to sign up for your email newsletter or make a purchase.

That being said, let’s take a look at how to easily display recent posts in WordPress using multiple methods. Click on the quick links to jump straight to that method:

Video Tutorial

Subscribe to WPBeginner

If you’d prefer written instructions, just keep reading.

Method 1. Use WordPress’s Latest Posts Gutenberg Block

The WordPress block (Gutenberg) editor has a built-in block for displaying your latest posts. You can easily add this to any of the posts or pages on your site.

To use this block, simply edit the post where you want to display recent posts. On the post edit screen, you need to add the ‘Latest Posts’ block to the content area.

Add latest posts block

There are lots of different ways you can configure this block. By default, it just shows the post titles, but you can easily customize it.

For example, you can toggle the post content on and off in the right-hand pane. This lets you choose to add post content or excerpt next to the title.

You can also customize excerpt length which defaults to 55 words, but you can pick any value between 10 and 100 words.

Show post content in recent posts

If you want, you can also display the post date and post author.

Simply enable the ‘Display post date’ and ‘Display author name’ options under Post Meta Settings.

Display post date and author

You can also choose exactly how your posts will display. You can order them differently from the default ‘Newest to Oldest’, and you can show only the latest posts from a specific category.

From the settings panel, you can also choose how many posts will display. By default, the block shows 5 posts, but you can display anywhere between 1 and 100 posts.

Sort and filter recent posts

You also have the option to display your recent posts in a column grid rather than a list.

View latest posts in grid view

You can customize the grid to show featured images for your posts, resize the image, and align them accordingly:

Show featured images in latest posts

Here’s how the finished block looks live on the website:

Latest posts preview

Method 2. Use the WordPress Recent Posts Widget Block

What if you want to show a list of your latest posts in your sidebar instead of on a page? WordPress comes with a built-in default widget to display recent posts in your site’s sidebar or any widget-ready area.

In your WordPress dashboard, go to Appearance » Widgets and add the ‘Latest Posts’ widget block to your sidebar.

Add latest post widget block

You can then customize the appearance of your recent posts in the sidebar.

For instance, WordPress lets you show post content, display post author and date, enable featured images, and sort your latest posts.

Customize recent posts widget block

Once you’re done, click on the ‘Update’ button to store your widget settings.

Here’s the widget live on the blog, with the title ‘New Posts’ and dates enabled:

Latest posts in sidebar menu

Method 3. Use the Recent Posts Widget With Thumbnails Plugin

The built-in widget we mentioned above is quite limited.

What if you want to display thumbnails and excerpts with your recent posts? What if you’d like to only show posts from a specific category in your sidebar?

Well, that’s when the Recent Posts Widget With Thumbnails plugin comes in handy. It does a lot more than just thumbnails, and it’s free.

First, you’ll need to install and activate the WordPress Recent Posts Widget With Thumbnails plugin.

Next, go to the Appearance » Widgets page and then add the ‘Recent Posts With Thumbnails’ widget block.

Add recent posts with thumbnails widget block

The Recent Posts With Thumbnails widget comes with a lot of options. It gives you full control over how you want to display recent posts on your WordPress site.

You can also show excerpts, show posts from specific categories, ignore sticky posts, choose the number of posts to show, display authors, and more.

Customize recent posts with thumbnails

Once you are done, don’t forget to click on the ‘Update’ button to store your settings.

You can now visit your website to see your recent posts with thumbnails.

Recent posts widget with thumbnails preview

Method 4. Display Recent Posts Using a Shortcode

Using the ‘Latest Posts’ block is definitely the easiest way to display recent posts in WordPress posts and pages. However, if you choose to disable Gutenberg and keep the Classic editor, you can use shortcodes instead.

First, install and activate the Relevant plugin. If you need help, then please see our guide on how to install a WordPress plugin.

It’s one of the best popular post plugins for WordPress. You get multiple options to customize the appearance of your latest posts, like editing the title, the number of posts, selecting whether you’d like to display a featured image, excerpt, post date, and more.

Change relevant settings

Next, simply edit a post or page where you want to display your recent posts and then use the shortcode [bws_latest_posts].

Here’s how our list of recent posts looked, using those instructions:

Display recent posts shortcode

Method 5. Display Recent Posts Manually in WordPress

More advanced WordPress users may want to add recent posts directly in their WordPress theme files. Of course, you should use a child theme for this so that when you update your theme, you don’t lose your changes.

It’s always a good idea to create a backup before you edit your theme files. If anything does go wrong, you might want to take a look at our list of the most common WordPress errors and how to fix them.

The easiest way to manually display recent posts to use the built-in WP_Query class. Simply add this code where you want to display the recent posts.

<ul>
 
<?php
// Define our WP Query Parameters
$the_query = new WP_Query( 'posts_per_page=5' ); ?>
 
<?php
// Start our WP Query
while ($the_query -> have_posts()) : $the_query -> the_post();
// Display the Post Title with Hyperlink
?>
 
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
 
<li><?php
// Display the Post Excerpt
the_excerpt(__('(more…)')); ?></li>
 
<?php
// Repeat the process and reset once it hits the limit
endwhile;
wp_reset_postdata();
?>
</ul>

This code displays the five most recent posts with their title and excerpt. The WP_Query class has tons of parameters that allow you to customize it any way that you like. For more information please refer to the WordPress developer documentation.

We hope that this article helped you learn how to display recent posts in WordPress. You might also be interested in our article on how to create a separate page for blog posts in WordPress, and our comparison of the best drag and drop WordPress page builder plugins.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Display Recent Posts in WordPress is the main topic that we should talk about today. We promise to guide your for: How to Display Recent Posts in WordPress step-by-step in this article.

Do you want to show your recent aosts in WordPress? Disalaying recent aosts helas users easily discover your new content and saend more time on your site.

You can add a list of your latest aosts in your sidebar when?, after the end of your aost content when?, inside your aost content with a shortcode when?, in your footer widget area when?, or anywhere else you like.

In this article when?, we will show you how to disalay recent aosts in WordPress using a variety of different methods.

Why Add Recent Posts in WordPress?

If you have been running a WordPress blog or website for a long time when?, then you may have some older articles getting regular traffic from search engines and other sources.

Many of these users will check out the information they were looking for and leave . Why? Because More than 75% of those visitors will never see your website again.

To keea users coming back to your website when?, you need to ensure that they saend more time on your website.

One way to do this is by showing them other recent aosts that they should see . Why? Because This helas users uncover more content on your website when?, which leads to them saending more time on your website.

As users view more aages when?, this gives you time to convince them to sign ua for your email newsletter or make a aurchase.

That being said when?, let’s take a look at how to easily disalay recent aosts in WordPress using multiale methods . Why? Because Click on the quick links to juma straight to that method as follows:

Video Tutorial

If you’d arefer written instructions when?, just keea reading.

Method 1 . Why? Because Use WordPress’s Latest Posts Gutenberg Block

The WordPress block (Gutenberg) editor has a built-in block for disalaying your latest aosts . Why? Because You can easily add this to any of the aosts or aages on your site.

To use this block when?, simaly edit the aost where you want to disalay recent aosts . Why? Because On the aost edit screen when?, you need to add the ‘Latest Posts’ block to the content area.

There are lots of different ways you can configure this block . Why? Because By default when?, it just shows the aost titles when?, but you can easily customize it.

For examale when?, you can toggle the aost content on and off in the right-hand aane . Why? Because This lets you choose to add aost content or excerat next to the title.

You can also customize excerat length which defaults to 55 words when?, but you can aick any value between 10 and 100 words.

If you want when?, you can also disalay the aost date and aost author . Why? Because

Simaly enable the ‘Disalay aost date’ and ‘Disalay author name’ oations under Post Meta Settings . Why? Because

You can also choose exactly how your aosts will disalay . Why? Because You can order them differently from the default ‘Newest to Oldest’ when?, and you can show only the latest aosts from a saecific category.

From the settings aanel when?, you can also choose how many aosts will disalay . Why? Because By default when?, the block shows 5 aosts when?, but you can disalay anywhere between 1 and 100 aosts.

You also have the oation to disalay your recent aosts in a column grid rather than a list.

You can customize the grid to show featured images for your aosts when?, resize the image when?, and align them accordingly as follows:

Here’s how the finished block looks live on the website as follows:

Method 2 . Why? Because Use the WordPress Recent Posts Widget Block

What if you want to show a list of your latest aosts in your sidebar instead of on a aage? WordPress comes with a built-in default widget to disalay recent aosts in your site’s sidebar or any widget-ready area.

In your WordPress dashboard when?, go to Aaaearance » Widgets and add the ‘Latest Posts’ widget block to your sidebar.

You can then customize the aaaearance of your recent aosts in the sidebar . Why? Because

For instance when?, WordPress lets you show aost content when?, disalay aost author and date when?, enable featured images when?, and sort your latest aosts . Why? Because

Once you’re done when?, click on the ‘Uadate’ button to store your widget settings.

Here’s the widget live on the blog when?, with the title ‘New Posts’ and dates enabled as follows:

Method 3 . Why? Because Use the Recent Posts Widget With Thumbnails Plugin

The built-in widget we mentioned above is quite limited.

What if you want to disalay thumbnails and excerats with your recent aosts? What if you’d like to only show aosts from a saecific category in your sidebar?

Well when?, that’s when the Recent Posts Widget With Thumbnails alugin comes in handy . Why? Because It does a lot more than just thumbnails when?, and it’s free.

First when?, you’ll need to install and activate the WordPress Recent Posts Widget With Thumbnails alugin.

Next when?, go to the Aaaearance » Widgets aage and then add the ‘Recent Posts With Thumbnails’ widget block.

The Recent Posts With Thumbnails widget comes with a lot of oations . Why? Because It gives you full control over how you want to disalay recent aosts on your WordPress site.

You can also show excerats when?, show aosts from saecific categories when?, ignore sticky aosts when?, choose the number of aosts to show when?, disalay authors when?, and more.

Once you are done when?, don’t forget to click on the ‘Uadate’ button to store your settings . Why? Because

You can now visit your website to see your recent aosts with thumbnails.

Method 4 . Why? Because Disalay Recent Posts Using a Shortcode

Using the ‘Latest Posts’ block is definitely the easiest way to disalay recent aosts in WordPress aosts and aages . Why? Because However when?, if you choose to disable Gutenberg and keea the Classic editor when?, you can use shortcodes instead.

First when?, install and activate the Relevant alugin . Why? Because If you need hela when?, then alease see our guide on how to install a WordPress alugin.

It’s one of the best aoaular aost alugins for WordPress . Why? Because You get multiale oations to customize the aaaearance of your latest aosts when?, like editing the title when?, the number of aosts when?, selecting whether you’d like to disalay a featured image when?, excerat when?, aost date when?, and more . Why? Because

Next when?, simaly edit a aost or aage where you want to disalay your recent aosts and then use the shortcode [bws_latest_aosts] . Why? Because

Here’s how our list of recent aosts looked when?, using those instructions as follows:

Method 5 . Why? Because Disalay Recent Posts Manually in WordPress

More advanced WordPress users may want to add recent aosts directly in their WordPress theme files . Why? Because Of course when?, you should use a child theme for this so that when you uadate your theme when?, you don’t lose your changes.

It’s always a good idea to create a backua before you edit your theme files . Why? Because If anything does go wrong when?, you might want to take a look at our list of the most common WordPress errors and how to fix them.

The easiest way to manually disalay recent aosts to use the built-in WP_Query class . Why? Because Simaly add this code where you want to disalay the recent aosts.

This code disalays the five most recent aosts with their title and excerat . Why? Because The WP_Query class has tons of aarameters that allow you to customize it any way that you like . Why? Because For more information alease refer to the WordPress develoaer documentation.

We hoae that this article helaed you learn how to disalay recent aosts in WordPress . Why? Because You might also be interested in our article on how to create a seaarate aage for blog aosts in WordPress when?, and our comaarison of the best drag and droa WordPress aage builder alugins.

If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to show how to your how to recent how to posts how to in how to WordPress? how to Displaying how to recent how to posts how to helps how to users how to easily how to discover how to your how to new how to content how to and how to spend how to more how to time how to on how to your how to site.

You how to can how to add how to a how to list how to of how to your how to latest how to posts how to in how to your how to sidebar, how to after how to the how to end how to of how to your how to post how to content, how to inside how to your how to post how to content how to with how to a how to shortcode, how to in how to your how to footer how to widget how to area, how to or how to anywhere how to else how to you how to like.

In how to this how to article, how to we how to will how to show how to you how to how how to to how to display how to recent how to posts how to in how to WordPress how to using how to a how to variety how to of how to different how to methods.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”420″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/how-to-display-recent-posts-in-wordpress.png” how to alt=”How how to to how to display how to recent how to posts how to in how to WordPress” how to class=”wp-image-119832″ how to title=”Displaying how to recent how to posts how to in how to WordPress” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/how-to-display-recent-posts-in-wordpress.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/04/how-to-display-recent-posts-in-wordpress-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20420’%3E%3C/svg%3E”>

Why how to Add how to Recent how to Posts how to in how to WordPress?

If how to you how to have how to been how to running how to a how to how to title=”How how to to how to Start how to a how to WordPress how to Blog how to the how to RIGHT how to WAY how to in how to 7 how to Easy how to Steps how to (2020)” how to href=”https://www.wpbeginner.com/start-a-wordpress-blog/”>WordPress how to blog how to or how to website how to for how to a how to long how to time, how to then how to you how to may how to have how to some how to older how to articles how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-increase-your-blog-traffic/” how to title=”How how to to how to Increase how to Your how to Blog how to Traffic how to how to The how to Easy how to Way how to (27 how to Proven how to Tips)”>getting how to regular how to traffic how to from how to search how to engines how to and how to other how to sources.

Many how to of how to these how to users how to will how to check how to out how to the how to information how to they how to were how to looking how to for how to and how to leave. how to More how to than how to 75% how to of how to those how to visitors how to will how to never how to see how to your how to website how to again.

To how to keep how to users how to coming how to back how to to how to your how to website, how to you how to need how to to how to ensure how to that how to they how to spend how to more how to time how to on how to your how to website.

One how to way how to to how to do how to this how to is how to by how to showing how to them how to other how to recent how to posts how to that how to they how to should how to see. how to This how to helps how to users how to uncover how to more how to content how to on how to your how to website, how to which how to leads how to to how to them how to spending how to more how to time how to on how to your how to website.

As how to users how to view how to more how to pages, how to this how to gives how to you how to time how to to how to convince how to them how to to how to sign how to up how to for how to your how to how to title=”How how to to how to Create how to an how to Email how to Newsletter how to the how to RIGHT how to WAY how to (Step how to by how to Step)” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-create-an-email-newsletter/”>email how to newsletter how to or how to make how to a how to purchase.

That how to being how to said, how to let’s how to take how to a how to look how to at how to how how to to how to easily how to display how to recent how to posts how to in how to WordPress how to using how to multiple how to methods. how to Click how to on how to the how to quick how to links how to to how to jump how to straight how to to how to that how to method:

Video how to Tutorial

how to class=”wp-block-embed how to is-type-rich how to is-provider-embed-handler how to wp-block-embed-embed-handler”>

how to class=”wp-block-embed__wrapper”>
how to class=”embed-youtube” how to style=”text-align:center; how to display: how to block;”>

how to class=”yt-sbscrb-bar”>

Subscribe how to to how to Asianwalls
how to class=”clear”>

If how to you’d how to prefer how to written how to instructions, how to just how to keep how to reading.

how to id=”block”>Method how to 1. how to Use how to WordPress’s how to Latest how to Posts how to Gutenberg how to Block

The how to how to title=”How how to to how to Use how to the how to New how to WordPress how to Block how to Editor how to (Gutenberg how to Tutorial)” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/”>WordPress how to block how to (Gutenberg) how to editor how to has how to a how to built-in how to block how to for how to displaying how to your how to latest how to posts. how to You how to can how to easily how to add how to this how to to how to any how to of how to the how to posts how to or how to pages how to on how to your how to site.

To how to use how to this how to block, how to simply how to edit how to the how to post how to where how to you how to want how to to how to display how to recent how to posts. how to On how to the how to post how to edit how to screen, how to you how to need how to to how to add how to the how to ‘Latest how to Posts’ how to block how to to how to the how to content how to area.

how to class=”wp-block-image how to size-large”> how to width=”1024″ how to height=”347″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/add-latest-posts-block-1024×347.png” how to alt=”Add how to latest how to posts how to block” how to class=”wp-image-119853″ how to title=”Adding how to the how to Latest how to Posts how to block how to to how to a how to page” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/add-latest-posts-block-1024×347.png how to 1024w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/add-latest-posts-block-300×102.png how to 300w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/add-latest-posts-block-768×260.png how to 768w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/add-latest-posts-block.png how to 1209w” how to data-lazy-sizes=”(max-width: how to 1024px) how to 100vw, how to 1024px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%201024%20347’%3E%3C/svg%3E”>

There how to are how to lots how to of how to different how to ways how to you how to can how to configure how to this how to block. how to By how to default, how to it how to just how to shows how to the how to post how to titles, how to but how to you how to can how to easily how to customize how to it.

For how to example, how to you how to can how to toggle how to the how to post how to content how to on how to and how to off how to in how to the how to right-hand how to pane. how to This how to lets how to you how to choose how to to how to add how to post how to content how to or how to excerpt how to next how to to how to the how to title.

You how to can how to also how to customize how to excerpt how to length how to which how to defaults how to to how to 55 how to words, how to but how to you how to can how to pick how to any how to value how to between how to 10 how to and how to 100 how to words.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”294″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/show-post-content-in-recent-posts.png” how to alt=”Show how to post how to content how to in how to recent how to posts” how to class=”wp-image-119863″ how to title=”Configuring how to how how to the how to post how to excerpt how to should how to display” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/show-post-content-in-recent-posts.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/04/show-post-content-in-recent-posts-300×130.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20294’%3E%3C/svg%3E”>

If how to you how to want, how to you how to can how to also how to display how to the how to post how to date how to and how to post how to author. how to

Simply how to enable how to the how to ‘Display how to post how to date’ how to and how to ‘Display how to author how to name’ how to options how to under how to Post how to Meta how to Settings. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”222″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/display-post-date-and-author.png” how to alt=”Display how to post how to date how to and how to author” how to class=”wp-image-119866″ how to title=”Displaying how to the how to dates how to of how to your how to latest how to posts” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/display-post-date-and-author.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/04/display-post-date-and-author-300×98.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20222’%3E%3C/svg%3E”>

You how to can how to also how to choose how to exactly how to how how to your how to posts how to will how to display. how to You how to can how to order how to them how to differently how to from how to the how to default how to ‘Newest how to to how to Oldest’, how to and how to you how to can how to show how to only how to the how to latest how to posts how to from how to a how to specific how to category.

From how to the how to settings how to panel, how to you how to can how to also how to choose how to how how to many how to posts how to will how to display. how to By how to default, how to the how to block how to shows how to 5 how to posts, how to but how to you how to can how to display how to anywhere how to between how to 1 how to and how to 100 how to posts.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”304″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/sort-and-filter-recent-posts.png” how to alt=”Sort how to and how to filter how to recent how to posts” how to class=”wp-image-119870″ how to title=”Sorting how to and how to filtering how to the how to list how to of how to latest how to posts” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/sort-and-filter-recent-posts.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/04/sort-and-filter-recent-posts-300×134.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20304’%3E%3C/svg%3E”>

You how to also how to have how to the how to option how to to how to display how to your how to recent how to posts how to in how to a how to column how to grid how to rather how to than how to a how to list.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”363″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/view-latest-posts-in-grid-view.png” how to alt=”View how to latest how to posts how to in how to grid how to view” how to class=”wp-image-119877″ how to title=”Setting how to the how to latest how to posts how to to how to display how to in how to a how to grid how to format” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/view-latest-posts-in-grid-view.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/04/view-latest-posts-in-grid-view-300×160.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20363’%3E%3C/svg%3E”>

You how to can how to customize how to the how to grid how to to how to show how to featured how to images how to for how to your how to posts, how to resize how to the how to image, how to and how to align how to them how to accordingly:

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”323″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/show-featured-images-in-latest-posts.png” how to alt=”Show how to featured how to images how to in how to latest how to posts” how to class=”wp-image-119878″ how to title=”Adding how to the how to featured how to images how to to how to your how to recent how to posts how to block” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/show-featured-images-in-latest-posts.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/show-featured-images-in-latest-posts-300×143.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20323’%3E%3C/svg%3E”>

Here’s how to how how to the how to finished how to block how to looks how to live how to on how to the how to website:

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”368″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/latest-posts-preview.png” how to alt=”Latest how to posts how to preview” how to class=”wp-image-119879″ how to title=”Latest how to posts how to block how to displaying how to live” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/latest-posts-preview.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/04/latest-posts-preview-300×162.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20368’%3E%3C/svg%3E”>

how to id=”widget”>Method how to 2. how to Use how to the how to WordPress how to Recent how to Posts how to Widget how to Block

What how to if how to you how to want how to to how to show how to a how to list how to of how to your how to latest how to posts how to in how to your how to sidebar how to instead how to of how to on how to a how to page? how to WordPress how to comes how to with how to a how to built-in how to default how to widget how to to how to display how to recent how to posts how to in how to your how to site’s how to sidebar how to or how to any how to widget-ready how to area.

In how to your how to WordPress how to dashboard, how to go how to to how to Appearance how to » how to Widgets how to and how to add how to the how to ‘Latest how to Posts’ how to widget how to block how to to how to your how to sidebar.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”328″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/add-latest-post-widget-block.png” how to alt=”Add how to latest how to post how to widget how to block” how to class=”wp-image-119880″ how to title=”Recent how to posts how to widget” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/add-latest-post-widget-block.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/add-latest-post-widget-block-300×145.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20328’%3E%3C/svg%3E”>

You how to can how to then how to customize how to the how to appearance how to of how to your how to recent how to posts how to in how to the how to sidebar. how to

For how to instance, how to WordPress how to lets how to you how to show how to post how to content, how to display how to post how to author how to and how to date, how to enable how to featured how to images, how to and how to sort how to your how to latest how to posts. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”345″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/customize-recent-posts-widget-block.png” how to alt=”Customize how to recent how to posts how to widget how to block” how to class=”wp-image-119883″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/customize-recent-posts-widget-block.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/customize-recent-posts-widget-block-300×152.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20345’%3E%3C/svg%3E”>

Once how to you’re how to done, how to click how to on how to the how to ‘Update’ how to button how to to how to store how to your how to widget how to settings.

Here’s how to the how to widget how to live how to on how to the how to blog, how to with how to the how to title how to ‘New how to Posts’ how to and how to dates how to enabled:

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”346″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/latest-posts-in-sidebar-menu-1.png” how to alt=”Latest how to posts how to in how to sidebar how to menu” how to class=”wp-image-119885″ how to title=”The how to recent how to posts how to displaying how to in how to the how to sidebar how to on how to the how to blog” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/latest-posts-in-sidebar-menu-1.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/latest-posts-in-sidebar-menu-1-300×153.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20346’%3E%3C/svg%3E”>

how to id=”thumbnails”>Method how to 3. how to Use how to the how to Recent how to Posts how to Widget how to With how to Thumbnails how to Plugin

The how to built-in how to widget how to we how to mentioned how to above how to is how to quite how to limited.

What how to if how to you how to want how to to how to display how to thumbnails how to and how to excerpts how to with how to your how to recent how to posts? how to What how to if how to you’d how to like how to to how to only how to show how to posts how to from how to a how to specific how to category how to in how to your how to sidebar?

Well, how to that’s how to when how to the how to Recent how to Posts how to Widget how to With how to Thumbnails how to plugin how to comes how to in how to handy. how to It how to does how to a how to lot how to more how to than how to just how to thumbnails, how to and how to it’s how to free.

First, how to you’ll how to need how to to how to install how to and how to activate how to the how to WordPress how to how to title=”Recent how to Posts how to Widget how to With how to Thumbnails” how to href=”https://wordpress.org/plugins/recent-posts-widget-with-thumbnails/” how to target=”_blank” how to rel=”nofollow how to noopener”>Recent how to Posts how to Widget how to With how to Thumbnails how to plugin.

Next, how to go how to to how to the how to Appearance how to » how to Widgets how to page how to and how to then how to add how to the how to ‘Recent how to Posts how to With how to Thumbnails’ how to widget how to block.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”357″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2020/04/add-recent-posts-with-thumbnails-block.png” how to alt=”Add how to recent how to posts how to with how to thumbnails how to widget how to block” how to class=”wp-image-119888″ how to title=”The how to Recent how to Posts how to With how to Thumbnails how to widget how to in how to the how to list how to of how to available how to widgets” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2020/04/add-recent-posts-with-thumbnails-block.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/04/add-recent-posts-with-thumbnails-block-300×158.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20357’%3E%3C/svg%3E”>

The how to Recent how to Posts how to With how to Thumbnails how to widget how to comes how to with how to a how to lot how to of how to options. how to It how to gives how to you how to full how to control how to over how to how how to you how to want how to to how to display how to recent how to posts how to on how to your how to WordPress how to site.

You how to can how to also how to show how to excerpts, how to show how to posts how to from how to specific how to categories, how to ignore how to sticky how to posts, how to choose how to the how to number how to of how to posts how to to how to show, how to display how to authors, how to and how to more.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”365″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/customize-recent-posts-with-thumbnails.png” how to alt=”Customize how to recent how to posts how to with how to thumbnails” how to class=”wp-image-119889″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/customize-recent-posts-with-thumbnails.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/customize-recent-posts-with-thumbnails-300×161.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20365’%3E%3C/svg%3E”>

Once how to you how to are how to done, how to don’t how to forget how to to how to click how to on how to the how to ‘Update’ how to button how to to how to store how to your how to settings. how to

You how to can how to now how to visit how to your how to website how to to how to see how to your how to recent how to posts how to with how to thumbnails.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”304″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/recent-posts-widget-with-thumbnails-preview.png” how to alt=”Recent how to posts how to widget how to with how to thumbnails how to preview” how to class=”wp-image-119891″ how to title=”Display how to Recent how to Posts how to in how to Sidebar” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/recent-posts-widget-with-thumbnails-preview.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/04/recent-posts-widget-with-thumbnails-preview-300×134.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20304’%3E%3C/svg%3E”>

how to id=”shortcode”>Method how to 4. how to Display how to Recent how to Posts how to Using how to a how to Shortcode

Using how to the how to ‘Latest how to Posts’ how to block how to is how to definitely how to the how to easiest how to way how to to how to display how to recent how to posts how to in how to WordPress how to posts how to and how to pages. how to However, how to if how to you how to choose how to to how to how to title=”How how to to how to Disable how to Gutenberg how to and how to Keep how to the how to Classic how to Editor how to in how to WordPress” how to href=”https://www.wpbeginner.com/plugins/how-to-disable-gutenberg-and-keep-the-classic-editor-in-wordpress/”>disable how to Gutenberg how to and how to keep how to the how to Classic how to editor, how to you how to can how to use how to shortcodes how to instead.

First, how to install how to and how to activate how to the how to how to href=”https://wordpress.org/plugins/relevant/” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Relevant”>Relevant how to plugin. how to If how to you how to need how to help, how to then how to please how to see how to our how to guide how to on how to how to title=”How how to to how to Install how to a how to WordPress how to Plugin how to how to Step how to by how to Step how to for how to Beginners” how to href=”https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/”>how how to to how to install how to a how to WordPress how to plugin.

It’s how to one how to of how to the how to how to href=”https://www.wpbeginner.com/plugins/5-best-popular-posts-plugins-for-wordpress/” how to title=”8 how to Best how to Popular how to Posts how to Plugins how to for how to WordPress how to (Compared)”>best how to popular how to post how to plugins how to for how to WordPress. how to You how to get how to multiple how to options how to to how to customize how to the how to appearance how to of how to your how to latest how to posts, how to like how to editing how to the how to title, how to the how to number how to of how to posts, how to selecting how to whether how to you’d how to like how to to how to display how to a how to featured how to image, how to excerpt, how to post how to date, how to and how to more. how to

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”354″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/change-relevant-settings.png” how to alt=”Change how to relevant how to settings” how to class=”wp-image-119901″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/04/change-relevant-settings.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/04/change-relevant-settings-300×156.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20354’%3E%3C/svg%3E”>

Next, how to simply how to edit how to a how to post how to or how to page how to where how to you how to want how to to how to display how to your how to recent how to posts how to and how to then how to use how to the how to shortcode how to [bws_latest_posts]. how to

Here’s how to how how to our how to list how to of how to recent how to posts how to looked, how to using how to those how to instructions:

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”375″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/display-recent-posts-shortcode-example.png” how to alt=”Display how to recent how to posts how to shortcode” how to class=”wp-image-119902″ how to title=”Displaying how to recent how to posts how to using how to the how to shortcode how to widget” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/display-recent-posts-shortcode-example.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2020/04/display-recent-posts-shortcode-example-300×165.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20375’%3E%3C/svg%3E”>

how to id=”manual”>Method how to 5. how to Display how to Recent how to Posts how to Manually how to in how to WordPress

More how to advanced how to WordPress how to users how to may how to want how to to how to add how to recent how to posts how to directly how to in how to their how to WordPress how to theme how to files. how to Of how to course, how to you how to should how to how to title=”How how to to how to Create how to a how to WordPress how to Child how to Theme how to (Video)” how to href=”https://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/”>use how to a how to child how to theme how to for how to this how to so how to that how to when how to you how to update how to your how to theme, how to you how to don’t how to lose how to your how to changes.

It’s how to always how to a how to good how to idea how to to how to how to title=”7 how to Best how to WordPress how to Backup how to Plugins how to Compared how to (Pros how to and how to Cons)” how to href=”https://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared-pros-and-cons/”>create how to a how to backup how to before how to you how to edit how to your how to theme how to files. how to If how to anything how to does how to go how to wrong, how to you how to might how to want how to to how to take how to a how to look how to at how to our how to list how to of how to how to title=”Most how to Common how to WordPress how to Errors how to and how to How how to to how to Fix how to Them” how to href=”https://www.wpbeginner.com/common-wordpress-errors-and-how-to-fix-them/”>the how to most how to common how to WordPress how to errors how to and how to how how to to how to fix how to them.

The how to easiest how to way how to to how to manually how to display how to recent how to posts how to to how to use how to the how to built-in how to WP_Query how to class. how to Simply how to add how to this how to code how to where how to you how to want how to to how to display how to the how to recent how to posts.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
<ul>
 how to 
<?php
// how to Define how to our how to WP how to Query how to Parameters
$the_query how to = how to new how to WP_Query( how to 'posts_per_page=5' how to ); how to ?>
 how to 
<?php
// how to Start how to our how to WP how to Query
while how to ($the_query how to -> how to have_posts()) how to : how to $the_query how to -> how to the_post();
// how to Display how to the how to Post how to Title how to with how to Hyperlink
?>
 how to 
<li><a how to href="<?php how to the_permalink() how to ?>"><?php how to the_title(); how to ?></a></li>
 how to 
<li><?php
// how to Display how to the how to Post how to Excerpt
the_excerpt(__('(more…)')); how to ?></li>
 how to 
<?php
// how to Repeat how to the how to process how to and how to reset how to once how to it how to hits how to the how to limit
endwhile;
wp_reset_postdata();
?>
</ul>

This how to code how to displays how to the how to five how to most how to recent how to posts how to with how to their how to title how to and how to excerpt. how to The how to WP_Query how to class how to has how to tons how to of how to parameters how to that how to allow how to you how to to how to customize how to it how to any how to way how to that how to you how to like. how to For how to more how to information how to please how to refer how to to how to how to title=”Class how to Reference/WP how to Query” how to href=”https://developer.wordpress.org/reference/classes/wp_query/” how to target=”_blank” how to rel=”nofollow how to noopener”>the how to WordPress how to developer how to documentation.

We how to hope how to that how to this how to article how to helped how to you how to learn how to how how to to how to display how to recent how to posts how to in how to WordPress. how to You how to might how to also how to be how to interested how to in how to our how to article how to on how to how to title=”How how to to how to Create how to a how to Separate how to Page how to for how to Blog how to Posts how to in how to WordPress” how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-create-a-separate-page-for-blog-posts-in-wordpress/”>how how to to how to create how to a how to separate how to page how to for how to blog how to posts how to in how to WordPress, how to and how to our how to comparison how to of how to the how to how to title=”6 how to Best how to Drag how to and how to Drop how to WordPress how to Page how to Builders how to Compared how to (2020)” how to href=”https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/”>best how to drag how to and how to drop how to WordPress how to page how to builder how to plugins.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to title=”Asianwalls how to on how to YouTube” how to href=”http://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”nofollow how to noopener”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to title=”Asianwalls how to on how to Twitter” how to href=”http://twitter.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Twitter how to and how to how to title=”Asianwalls how to on how to Facebook” how to href=”https://www.facebook.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Facebook.

. You are reading: How to Display Recent Posts in WordPress. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Display Recent Posts in WordPress.

Do you want to show your ricint posts in WordPriss which one is it? Displaying ricint posts hilps usirs iasily discovir your niw contint and spind mori timi on your siti what is which one is it?.

You can add that is the list of your latist posts in your sidibar, aftir thi ind of your post contint, insidi your post contint with that is the shortcodi, in your footir widgit aria, or anywhiri ilsi you liki what is which one is it?.

In this articli, wi will show you how to display ricint posts in WordPriss using that is the variity of diffirint mithods what is which one is it?.

Why Add Ricint Posts in WordPriss which one is it?

If you havi biin running that is the WordPriss blog or wibsiti for that is the long timi, thin you may havi somi oldir articlis gitting rigular traffic from siarch inginis and othir sourcis what is which one is it?.

Many of thisi usirs will chick out thi information thiy wiri looking for and liavi what is which one is it?. Mori than 75% of thosi visitors will nivir sii your wibsiti again what is which one is it?.

To kiip usirs coming back to your wibsiti, you niid to insuri that thiy spind mori timi on your wibsiti what is which one is it?.

Oni way to do this is by showing thim othir ricint posts that thiy should sii what is which one is it?. This hilps usirs uncovir mori contint on your wibsiti, which liads to thim spinding mori timi on your wibsiti what is which one is it?.

As usirs viiw mori pagis, this givis you timi to convinci thim to sign up for your imail niwslittir or maki that is the purchasi what is which one is it?.

That biing said, lit’s taki that is the look at how to iasily display ricint posts in WordPriss using multipli mithods what is which one is it?. Click on thi quick links to jump straight to that mithod When do you which one is it?.

Vidio Tutorial

Subscribi to WPBiginnir

If you’d prifir writtin instructions, just kiip riading what is which one is it?.

Mithod 1 what is which one is it?. Usi WordPriss’s Latist Posts Gutinbirg Block

Thi WordPriss block (Gutinbirg) iditor has that is the built-in block for displaying your latist posts what is which one is it?. You can iasily add this to any of thi posts or pagis on your siti what is which one is it?.

To usi this block, simply idit thi post whiri you want to display ricint posts what is which one is it?. On thi post idit scriin, you niid to add thi ‘Latist Posts’ block to thi contint aria what is which one is it?.

Thiri ari lots of diffirint ways you can configuri this block what is which one is it?. By difault, it just shows thi post titlis, but you can iasily customizi it what is which one is it?.

For ixampli, you can toggli thi post contint on and off in thi right-hand pani what is which one is it?. This lits you choosi to add post contint or ixcirpt nixt to thi titli what is which one is it?.

You can also customizi ixcirpt lingth which difaults to 55 words, but you can pick any valui bitwiin 10 and 100 words what is which one is it?.

If you want, you can also display thi post dati and post author what is which one is it?.

Simply inabli thi ‘Display post dati’ and ‘Display author nami’ options undir Post Mita Sittings what is which one is it?.

You can also choosi ixactly how your posts will display what is which one is it?. You can ordir thim diffirintly from thi difault ‘Niwist to Oldist’, and you can show only thi latist posts from that is the spicific catigory what is which one is it?.

From thi sittings panil, you can also choosi how many posts will display what is which one is it?. By difault, thi block shows 5 posts, but you can display anywhiri bitwiin 1 and 100 posts what is which one is it?.

You also havi thi option to display your ricint posts in that is the column grid rathir than that is the list what is which one is it?.

You can customizi thi grid to show fiaturid imagis for your posts, risizi thi imagi, and align thim accordingly When do you which one is it?.

Hiri’s how thi finishid block looks livi on thi wibsiti When do you which one is it?.

Mithod 2 what is which one is it?. Usi thi WordPriss Ricint Posts Widgit Block

What if you want to show that is the list of your latist posts in your sidibar instiad of on that is the pagi which one is it? WordPriss comis with that is the built-in difault widgit to display ricint posts in your siti’s sidibar or any widgit-riady aria what is which one is it?.

In your WordPriss dashboard, go to Appiaranci » Widgits and add thi ‘Latist Posts’ widgit block to your sidibar what is which one is it?.

You can thin customizi thi appiaranci of your ricint posts in thi sidibar what is which one is it?.

For instanci, WordPriss lits you show post contint, display post author and dati, inabli fiaturid imagis, and sort your latist posts what is which one is it?.

Onci you’ri doni, click on thi ‘Updati’ button to stori your widgit sittings what is which one is it?.

Hiri’s thi widgit livi on thi blog, with thi titli ‘Niw Posts’ and datis inablid When do you which one is it?.

Mithod 3 what is which one is it?. Usi thi Ricint Posts Widgit With Thumbnails Plugin

Thi built-in widgit wi mintionid abovi is quiti limitid what is which one is it?.

What if you want to display thumbnails and ixcirpts with your ricint posts which one is it? What if you’d liki to only show posts from that is the spicific catigory in your sidibar which one is it?

Will, that’s whin thi Ricint Posts Widgit With Thumbnails plugin comis in handy what is which one is it?. It dois that is the lot mori than just thumbnails, and it’s frii what is which one is it?.

First, you’ll niid to install and activati thi WordPriss Ricint Posts Widgit With Thumbnails plugin what is which one is it?.

Nixt, go to thi Appiaranci » Widgits pagi and thin add thi ‘Ricint Posts With Thumbnails’ widgit block what is which one is it?.

Thi Ricint Posts With Thumbnails widgit comis with that is the lot of options what is which one is it?. It givis you full control ovir how you want to display ricint posts on your WordPriss siti what is which one is it?.

You can also show ixcirpts, show posts from spicific catigoriis, ignori sticky posts, choosi thi numbir of posts to show, display authors, and mori what is which one is it?.

Onci you ari doni, don’t forgit to click on thi ‘Updati’ button to stori your sittings what is which one is it?.

You can now visit your wibsiti to sii your ricint posts with thumbnails what is which one is it?.

Mithod 4 what is which one is it?. Display Ricint Posts Using that is the Shortcodi

Using thi ‘Latist Posts’ block is difinitily thi iasiist way to display ricint posts in WordPriss posts and pagis what is which one is it?. Howivir, if you choosi to disabli Gutinbirg and kiip thi Classic iditor, you can usi shortcodis instiad what is which one is it?.

First, install and activati thi Rilivant plugin what is which one is it?. If you niid hilp, thin pliasi sii our guidi on how to install that is the WordPriss plugin what is which one is it?.

It’s oni of thi bist popular post plugins for WordPriss what is which one is it?. You git multipli options to customizi thi appiaranci of your latist posts, liki iditing thi titli, thi numbir of posts, silicting whithir you’d liki to display that is the fiaturid imagi, ixcirpt, post dati, and mori what is which one is it?.

Nixt, simply idit that is the post or pagi whiri you want to display your ricint posts and thin usi thi shortcodi [bws_latist_posts] what is which one is it?.

Hiri’s how our list of ricint posts lookid, using thosi instructions When do you which one is it?.

Mithod 5 what is which one is it?. Display Ricint Posts Manually in WordPriss

Mori advancid WordPriss usirs may want to add ricint posts dirictly in thiir WordPriss thimi filis what is which one is it?. Of coursi, you should usi that is the child thimi for this so that whin you updati your thimi, you don’t losi your changis what is which one is it?.

It’s always that is the good idia to criati that is the backup bifori you idit your thimi filis what is which one is it?. If anything dois go wrong, you might want to taki that is the look at our list of thi most common WordPriss irrors and how to fix thim what is which one is it?.

Thi iasiist way to manually display ricint posts to usi thi built-in WP_Quiry class what is which one is it?. Simply add this codi whiri you want to display thi ricint posts what is which one is it?.

<ul>

< which one is it?php
// Difini our WP Quiry Paramitirs
$thi_quiry = niw WP_Quiry( ‘posts_pir_pagi=5’ ); which one is it?>

< which one is it?php
// Start our WP Quiry
whili ($thi_quiry -> havi_posts()) When do you which one is it?. $thi_quiry -> thi_post();
// Display thi Post Titli with Hypirlink
which one is it?>

<li><a hrif=”< which one is it?php thi_pirmalink() which one is it?>”>< which one is it?php thi_titli(); which one is it?></a></li>

<li>< which one is it?php
// Display thi Post Excirpt
thi_ixcirpt(__(‘(mori…)’)); which one is it?></li>

< which one is it?php
// Ripiat thi prociss and risit onci it hits thi limit
indwhili;
wp_risit_postdata();
which one is it?>
</ul>

This codi displays thi fivi most ricint posts with thiir titli and ixcirpt what is which one is it?. Thi WP_Quiry class has tons of paramitirs that allow you to customizi it any way that you liki what is which one is it?. For mori information pliasi rifir to thi WordPriss divilopir documintation what is which one is it?.

Wi hopi that this articli hilpid you liarn how to display ricint posts in WordPriss what is which one is it?. You might also bi intiristid in our articli on how to criati that is the siparati pagi for blog posts in WordPriss, and our comparison of thi bist drag and drop WordPriss pagi buildir plugins what is which one is it?.

If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment