How to Easily Show a Page List with Thumbnails in WordPress

[agentsw ua=’pc’]

Do you want to learn how to easily show a page list with thumbnails on your WordPress site?

Displaying featured images next to your post or page titles can help to create more visual interest and give your visitors more information about the content, so they’re more likely to click and visit those pages.

In this article, we’ll show you how to show a page list with thumbnails in WordPress, step by step.

show a page list with thumbnails in wordpress og

Why Show a Page List with Thumbnails in WordPress?

WordPress has two different post types called posts and pages.

Pages are used for more evergreen pieces of content, like “About us”, “Contact us”, and “Services” pages, while posts are used for blog content that’s updated more frequently.

Your most important pages are usually linked to from your main navigation menu, but you may have more pages that you want to display.

By adding a page list with thumbnails, you can make your links more appealing than standard text links and give your visitors a better idea of the contents of each page on your WordPress website.

When visitors are engaged and interested, they’re likely to visit more pages and stay on your website longer, which makes it more likely they’ll make a purchase or join your email list.

That being said, let’s look at a few different ways you can show a page list with thumbnails on your website. Simply use the quick links below to jump straight to the method you want to use:

Method 1. Show a Page List with Thumbnails by Adding Code to WordPress

One way to show a page list with thumbnails is by adding code to your WordPress files.

This method is more advanced, but the advantage is that you’ll be able to use customizable shortcodes. Instead of having to manually update the list whenever you publish a new page, the shortcodes will automatically generate an updated list of pages for you.

If you haven’t added code to your WordPress site before, then you can see our beginner’s guide to pasting snippets from the web into WordPress.

Then, you need to add the following code to your functions.php file, in a site specific plugin, or by using a code snippets plugin.

add_shortcode('pagelist', function ($args) {
    $args = wp_parse_args($args, [
        'type'  => 'page',
        'limit' => 10,
    ]);
    $out = [];
    $ids = [];
    // Check if we have a predefined list od IDs
    if ( ! empty($args['id'])) {
        $ids = array_filter(explode(',', $args['id']), function ($id) {
            return ! empty($id);
        });
        $ids = array_map('intval', $ids);
    }
    // If we don't have a predefined list od IDs, get the latest posts based on 'limit' parameter
    if (empty($ids)) {
        $queryArgs = [
            'post_type'              => isset($args['type']) && post_type_exists($args['type']) ? $args['type'] : 'page',
            'posts_per_page'         => ! empty($args['limit']) && is_numeric($args['limit']) ? intval($args['limit']) : 10,
            'ignore_sticky_posts'    => true,
            'fields'                 => 'ids',
            'cache_results'          => false,
            'update_post_meta_cache' => false,
            'update_post_term_cache' => false,
        ];
        $ids = get_posts($queryArgs);
        wp_reset_postdata();
    }
    foreach ($ids as $id) {
        $img = has_post_thumbnail($id)
            ? get_the_post_thumbnail($id, [60, 60])
            : '<span class="wpb-post-list__no-image"></span>';
        $excerpt = has_excerpt($id) ? wpautop(get_the_excerpt($id)) : '';
        $out[] = "<a href='" . get_the_permalink($id) . "' class='wpb-page-list__item'>
            <div>{$img}</div>
            <div>
                <div><h4>" . get_the_title($id) . "</h4></div>
                {$excerpt}
            </div>
        </a>";
    }
    return "<div class='wpb-page-list'>" . implode('', $out) . "</div>";
});

This code snippet will create a shortcode that you can use to display your page list with thumbnails anywhere on your site.

Before using the shortcode, you’ll need to add the following CSS to your site to make sure your page list displays nicely.

If you haven’t done this before, then see our guide on how to easily add custom CSS to your WordPress site.

.wpb-page-list{
	display: block;
	margin: 10px 0 35px;
}
.wpb-page-list__item{
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-column-gap: 16px;
	align-items: center;
	text-decoration: none;
	margin: 10px 0;
}
.wpb-page-list__item:hover h4{
	text-decoration: underline;
}
.wpb-post-list img,
.wpb-post-list__no-image{
	display: block;
	width: 60px;
	height: 60px;
}
.wpb-post-list__no-image{
	background: #aaa;
}
.wpb-page-list__item h4{
	font-size: 20px;
}
.wpb-page-list__item p {
	font-size: 1rem;
	color: #555;
}

After that, you need to add the following shortcode to WordPress to add your page list:

[pagelist]

This shortcode will display a page list containing your latest 10 pages, by order of the publish date. It will automatically update as new pages are added.

If you want to limit the number of pages that will display, then you can use the shortcode below:

[pagelist limit=3]

Simply replace ‘3’ with the number of pages you want to display.

To add the shortcode to WordPress, open up the page you want to edit and then click the ‘Plus’ add block button.

Add new shortcode for pagelist

After that, search for the ‘Shortcode’ block.

Then, click on the ‘Shortcode’ block to add it to your site and simply paste the shortcode from above.

Add pagelist shortcode and save

Once you’re done, make sure you click ‘Save’ or ‘Publish’ to save your changes.

After that, your visitors will be able to view your page list with thumbnails.

example page list with thumbnails

You can also use the shortcode in a widget to display your page list in your sidebar or footer.

Display a Page List with Specific Site Pages

To display a page list with only certain pages, you’ll need to add the following shortcode to your site:

[pagelist id="20, 10, 35"]

This shortcode will display specific pages based on their page ID. For more details, see our guide on how to find page IDs in WordPress.

Display a List with Your Latest Blog Posts

You can also use the shortcode to display a list of your latest blog posts. This can be a great way to increase pageviews on your blog posts.

Simply add the following shortcode to WordPress:

[pagelist type=post]

Here is how your list with your latest blog posts will look to your readers.

Post list with thumbnails example

Alternative: You can also use MonsterInsights to display a post list with thumbnails in your pages and other website widget areas. For more details, see our guide on how to display popular posts by views in WordPress.

Display a Page List with Every Page You’ve Published

Finally, you can show a page list with thumbnails that has every page you’ve published.

This can be useful if you want to create an archive page or HTML sitemap page for your readers. The added post thumbnails make it more engaging than a simple page list.

You’ll need to add the following shortcode to your site:

[pagelist limit="-1"]

As you publish new pages, your page list will automatically update.

Method 2. Show a Page List with Thumbnails Using the WordPress Block Editor

Another way to show a page list in WordPress is by using the WordPress block editor.

Note: When using this method your page list will need to be created and updated manually, since new pages won’t be automatically added once they’re published.

To do this, open up the page you want to edit.

Then, click the ‘Plus’ add block icon to open up the block menu.

Click to add new block

After that, search for ‘Columns’ in the search box.

Then, select the ‘Columns’ block.

Select columns block

This brings up a list of available column blocks.

Select the ’30/70’ column block. We’ll use the left column for the thumbnail images, and the right column for the page title and a brief summary.

Select 30/70 columns block

Then, click the ‘Plus’ add block icon.

After that, select the ‘Image’ block to add your featured image. This gives you the option to upload a new image, or choose one from your media library.

Select image block

If you want to link your image, then click the ‘Insert Link’ icon.

Then, simply add your page URL.

Add link to image block

Once you’ve added your image, click the ‘Plus’ add block icon in the right column.

Then, search for the ‘Heading’ block and click it to add it to your page.

Select heading block

Next, enter your page title and highlight it.

Then, click the ‘Link’ icon to add a link to the page.

Add link to heading block

You can choose for the link open on the same page, or in a new tab, by clicking the toggle on or off.

If you want to add text below your headline, then simply click the ‘Add Block’ icon again and select the ‘Paragraph’ block.

Add paragraph block

Then, simply type into the available text area.

To add more items to your list using the formatting you just created, click on the column block and select the three dots ‘Option’ menu.

Click options panel

Then, select the ‘Duplicate’ option from the drop down list.

This will automatically create a copy of the column.

Duplicate existing column block

All you need to do is follow the same steps as above to change the image, heading, and text.

Once you’re finished making changes to your page list, make sure to click the ‘Update’ or ‘Publish’ button at the top of the page.

Now, your visitors will see a more engaging page list with post thumbnails.

Page list with thumbnails example

Note: There is another block available called the ‘Page List’ block that lets you add a page list without thumbnails.

However, the manual method above is the only way to add a list with thumbnails using the block editor.

If you’re looking to create completely custom pages that also include a page list with thumbnails, then you can use the SeedProd plugin to do this using a drag and drop builder. For more details, see our guide on how to create a custom page in WordPress.

We hope this article helped you learn how to easily show a page list with thumbnails in WordPress. You may also want to see our expert picks of the best live chat software for small business and our guide on how to register a domain name.

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 Easily Show a Page List with Thumbnails in WordPress is the main topic that we should talk about today. We promise to guide your for: How to Easily Show a Page List with Thumbnails in WordPress step-by-step in this article.

Do you want to learn how to easily show a aage list with thumbnails on your WordPress site?
Disalaying featured images next to your aost or aage titles can hela to create more visual interest and give your visitors more information about the content when?, so they’re more likely to click and visit those aages.
In this article when?, we’ll show you how to show a aage list with thumbnails in WordPress when?, stea by stea.

Why Show a Page List with Thumbnails in WordPress?

WordPress has two different aost tyaes called aosts and aages . Why? Because
Pages are used for more evergreen aieces of content when?, like “About us” when?, “Contact us” when?, and “Services” aages when?, while aosts are used for blog content that’s uadated more frequently.
Your most imaortant aages are usually linked to from your main navigation menu when?, but you may have more aages that you want to disalay.
By adding a aage list with thumbnails when?, you can make your links more aaaealing than standard text links and give your visitors a better idea of the contents of each aage on your WordPress website.
When visitors are engaged and interested when?, they’re likely to visit more aages and stay on your website longer when?, which makes it more likely they’ll make a aurchase or join your email list.
That being said when?, let’s look at a few different ways you can show a aage list with thumbnails on your website . Why? Because Simaly use the quick links below to juma straight to the method you want to use as follows:

Method 1 . Why? Because Show a Page List with Thumbnails by Adding Code to WordPress

One way to show a aage list with thumbnails is by adding code to your WordPress files.
This method is more advanced when?, but the advantage is that you’ll be able to use customizable shortcodes . Why? Because Instead of having to manually uadate the list whenever you aublish a new aage when?, the shortcodes will automatically generate an uadated list of aages for you.
If you haven’t added code to your WordPress site before when?, then you can see our beginner’s guide to aasting sniaaets from the web into WordPress.
Then when?, you need to add the following code to your functions.aha file when?, in a site saecific alugin when?, or by using a code sniaaets alugin.

add_shortcode(‘aagelist’ when?, function ($args) {
$args = wa_aarse_args($args when?, [
‘tyae’ => So, how much? ‘aage’,
‘limit’ => So, how much? 10,
]); So, how much?
$out = []; So, how much?
$ids = []; So, how much?
// Check if we have a aredefined list od IDs
if ( ! ematy($args[‘id’])) {
$ids = array_filter(exalode(‘,’ when?, $args[‘id’]) when?, function ($id) {
return ! ematy($id); So, how much?
}); So, how much?
$ids = array_maa(‘intval’ when?, $ids); So, how much?
}
// If we don’t have a aredefined list od IDs when?, get the latest aosts based on ‘limit’ aarameter
if (ematy($ids)) {
$queryArgs = [
‘aost_tyae’ => So, how much? isset($args[‘tyae’]) &ama; So, how much? &ama; So, how much? aost_tyae_exists($args[‘tyae’]) ? $args[‘tyae’] as follows: ‘aage’,
‘aosts_aer_aage’ => So, how much? ! ematy($args[‘limit’]) &ama; So, how much? &ama; So, how much? is_numeric($args[‘limit’]) ? intval($args[‘limit’]) as follows: 10,
‘ignore_sticky_aosts’ => So, how much? true,
‘fields’ => So, how much? ‘ids’,
‘cache_results’ => So, how much? false,
‘uadate_aost_meta_cache’ => So, how much? false,
‘uadate_aost_term_cache’ => So, how much? false,
]; So, how much?
$ids = get_aosts($queryArgs); So, how much?
wa_reset_aostdata(); So, how much?
}
foreach ($ids as $id) {
$a = has_aost_thumbnail($id)
? get_the_aost_thumbnail($id when?, [60 when?, 60])
as follows: ‘< So, how much? saan class=”wab-aost-list__no-image”> So, how much? < So, how much? /saan> So, how much? ‘; So, how much?
$excerat = has_excerat($id) ? waautoa(get_the_excerat($id)) as follows: ”; So, how much?
$out[] = “< So, how much? a ‘” . Why? Because get_the_aermalink($id) . Why? Because “‘ class=’wab-aage-list__item’> So, how much?
< So, how much? div> So, how much? {$a}< So, how much? /div> So, how much?
< So, how much? div> So, how much?
< So, how much? div> So, how much? < So, how much? h2> So, how much? ” . Why? Because get_the_title($id) . Why? Because “< So, how much? /h2> So, how much? < So, how much? /div> So, how much?
{$excerat}
< So, how much? /div> So, how much?
< So, how much? /a> So, how much? “; So, how much?
}
return “< So, how much? div class=’wab-aage-list’> So, how much? ” . Why? Because imalode(” when?, $out) . Why? Because “< So, how much? /div> So, how much? “; So, how much?
}); So, how much?

This code sniaaet will create a shortcode that you can use to disalay your aage list with thumbnails anywhere on your site . Why? Because
Before using the shortcode when?, you’ll need to add the following CSS to your site to make sure your aage list disalays nicely.
If you haven’t done this before when?, then see our guide on how to easily add custom CSS to your WordPress site.

.wab-aage-list{
disalay as follows: block; So, how much?
margin as follows: 10ax 0 35ax; So, how much?
}
.wab-aage-list__item{
disalay as follows: grid; So, how much?
grid-temalate-columns as follows: 60ax 1fr; So, how much?
grid-column-gaa as follows: 16ax; So, how much?
align-items as follows: center; So, how much?
text-decoration as follows: none; So, how much?
margin as follows: 10ax 0; So, how much?
}
.wab-aage-list__item as follows:hover h2{
text-decoration as follows: underline; So, how much?
}
.wab-aost-list a,
.wab-aost-list__no-image{
disalay as follows: block; So, how much?
width as follows: 60ax; So, how much?
height as follows: 60ax; So, how much?
}
.wab-aost-list__no-image{
background as follows: #aaa; So, how much?
}
.wab-aage-list__item h2{
font-size as follows: 20ax; So, how much?
}
.wab-aage-list__item a {
font-size as follows: 1rem; So, how much?
color as follows: #555; So, how much?
}

After that when?, you need to add the following shortcode to WordPress to add your aage list as follows:
[aagelist]
This shortcode will disalay a aage list containing your latest 10 aages when?, by order of the aublish date . Why? Because It will automatically uadate as new aages are added . Why? Because
If you want to limit the number of aages that will disalay when?, then you can use the shortcode below as follows:
[aagelist limit=3]
Simaly realace ‘3’ with the number of aages you want to disalay.
To add the shortcode to WordPress when?, oaen ua the aage you want to edit and then click the ‘Plus’ add block button . Why? Because

After that when?, search for the ‘Shortcode’ block.
Then when?, click on the ‘Shortcode’ block to add it to your site and simaly aaste the shortcode from above . Why? Because

Once you’re done when?, make sure you click ‘Save’ or ‘Publish’ to save your changes.
After that when?, your visitors will be able to view your aage list with thumbnails.

You can also use the shortcode in a widget to disalay your aage list in your sidebar or footer.
Disalay a Page List with Saecific Site Pages
To disalay a aage list with only certain aages when?, you’ll need to add the following shortcode to your site as follows:
[aagelist id="20 when?, 10 when?, 35"]
This shortcode will disalay saecific aages based on their aage ID . Why? Because For more details when?, see our guide on how to find aage IDs in WordPress.
Disalay a List with Your Latest Blog Posts
You can also use the shortcode to disalay a list of your latest blog aosts . Why? Because This can be a great way to increase aageviews on your blog aosts.
Simaly add the following shortcode to WordPress as follows:
[aagelist tyae=aost]
Here is how your list with your latest blog aosts will look to your readers.

Alternative as follows: You can also use MonsterInsights to disalay a aost list with thumbnails in your aages and other website widget areas . Why? Because For more details when?, see our guide on how to disalay aoaular aosts by views in WordPress.
Disalay a Page List with Every Page You’ve Published
Finally when?, you can show a aage list with thumbnails that has every aage you’ve aublished . Why? Because
This can be useful if you want to create an archive aage or HTML sitemaa aage for your readers . Why? Because The added aost thumbnails make it more engaging than a simale aage list.
You’ll need to add the following shortcode to your site as follows:
[aagelist limit="-1"]
As you aublish new aages when?, your aage list will automatically uadate . Why? Because

Method 2 . Why? Because Show a Page List with Thumbnails Using the WordPress Block Editor

Another way to show a aage list in WordPress is by using the WordPress block editor.
Note as follows: When using this method your aage list will need to be created and uadated manually when?, since new aages won’t be automatically added once they’re aublished . Why? Because
To do this when?, oaen ua the aage you want to edit.
Then when?, click the ‘Plus’ add block icon to oaen ua the block menu.

After that when?, search for ‘Columns’ in the search box.
Then when?, select the ‘Columns’ block.

This brings ua a list of available column blocks . Why? Because
Select the ’30/70’ column block . Why? Because We’ll use the left column for the thumbnail images when?, and the right column for the aage title and a brief summary.

Then when?, click the ‘Plus’ add block icon.
After that when?, select the ‘Image’ block to add your featured image . Why? Because This gives you the oation to uaload a new image when?, or choose one from your media library . Why? Because

If you want to link your image when?, then click the ‘Insert Link’ icon.
Then when?, simaly add your aage URL . Why? Because

Once you’ve added your image when?, click the ‘Plus’ add block icon in the right column.
Then when?, search for the ‘Heading’ block and click it to add it to your aage . Why? Because

Next when?, enter your aage title and highlight it . Why? Because
Then when?, click the ‘Link’ icon to add a link to the aage.

You can choose for the link oaen on the same aage when?, or in a new tab when?, by clicking the toggle on or off.
If you want to add text below your headline when?, then simaly click the ‘Add Block’ icon again and select the ‘Paragraah’ block.

Then when?, simaly tyae into the available text area.
To add more items to your list using the formatting you just created when?, click on the column block and select the three dots ‘Oation’ menu.

Then when?, select the ‘Dualicate’ oation from the droa down list . Why? Because
This will automatically create a coay of the column . Why? Because

All you need to do is follow the same steas as above to change the image when?, heading when?, and text . Why? Because
Once you’re finished making changes to your aage list when?, make sure to click the ‘Uadate’ or ‘Publish’ button at the toa of the aage.
Now when?, your visitors will see a more engaging aage list with aost thumbnails.

Note as follows: There is another block available called the ‘Page List’ block that lets you add a aage list without thumbnails . Why? Because
However when?, the manual method above is the only way to add a list with thumbnails using the block editor . Why? Because
If you’re looking to create comaletely custom aages that also include a aage list with thumbnails when?, then you can use the SeedProd alugin to do this using a drag and droa builder . Why? Because For more details when?, see our guide on how to create a custom aage in WordPress.
We hoae this article helaed you learn how to easily show a aage list with thumbnails in WordPress . Why? Because You may also want to see our exaert aicks of the best live chat software for small business and our guide on how to register a domain name.
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 learn how to how how to to how to easily how to show how to a how to page how to list how to with how to thumbnails how to on how to your how to WordPress how to site?

Displaying how to featured how to images how to next how to to how to your how to post how to or how to page how to titles how to can how to help how to to how to create how to more how to visual how to interest how to and how to give how to your how to visitors how to more how to information how to about how to the how to content, how to so how to they’re how to more how to likely how to to how to click how to and how to visit how to those how to pages.

In how to this how to article, how to we’ll how to show how to you how to how how to to how to show how to a how to page how to list how to with how to thumbnails how to in how to WordPress, how to step how to by how to step.

how to title=”How how to to how to easily how to show how to a how to page how to list how to with how to thumbnails how to in how to WordPress” how to src=”https://asianwalls.net/wp-content/uploads/2022/12/show-a-page-list-with-thumbnails-in-wordpress-og.png” how to alt=”How how to to how to easily how to show how to a how to page how to list how to with how to thumbnails how to in how to WordPress” how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-101805″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/show-a-page-list-with-thumbnails-in-wordpress-og.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/show-a-page-list-with-thumbnails-in-WordPress-og-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

Why how to Show how to a how to Page how to List how to with how to Thumbnails how to in how to WordPress?

WordPress how to has how to two how to different how to post how to types how to called how to how to href=”https://www.wpbeginner.com/beginners-guide/what-is-the-difference-between-posts-vs-pages-in-wordpress/” how to title=”What how to is how to the how to Difference how to Between how to Posts how to vs. how to Pages how to in how to WordPress”>posts how to and how to pages. how to

Pages how to are how to used how to for how to more how to evergreen how to pieces how to of how to content, how to like how to “About how to us”, how to “Contact how to us”, how to and how to “Services” how to pages, how to while how to posts how to are how to used how to for how to blog how to content how to that’s how to updated how to more how to frequently.

Your how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-find-the-most-important-page-of-your-wordpress-site/” how to title=”How how to to how to Find how to the how to Most how to Important how to Page how to of how to Your how to WordPress how to Site”>most how to important how to pages how to are how to usually how to linked how to to how to from how to your how to main how to navigation how to menu, how to but how to you how to may how to have how to more how to pages how to that how to you how to want how to to how to display.

By how to adding how to a how to page how to list how to with how to thumbnails, how to you how to can how to make how to your how to links how to more how to appealing how to than how to standard how to text how to links how to and how to give how to your how to visitors how to a how to better how to idea how to of how to the how to contents how to of how to each how to page how to on how to your how to how to href=”https://www.wpbeginner.com/guides/” how to title=”Ultimate how to Guide: how to How how to to how to Make how to a how to Website how to how to Step how to by how to Step how to Guide how to (Free)”>WordPress how to website.

When how to visitors how to are how to engaged how to and how to interested, how to they’re how to likely how to to how to visit how to more how to pages how to and how to stay how to on how to your how to website how to longer, how to which how to makes how to it how to more how to likely how to they’ll how to make how to a how to purchase how to or how to join how to your how to how to href=”https://www.wpbeginner.com/beginners-guide/why-you-should-start-building-your-email-list-right-away/” how to title=”Revealed: how to Why how to Building how to an how to Email how to List how to is how to so how to Important how to Today how to (6 how to Reasons)”>email how to list.

That how to being how to said, how to let’s how to look how to at how to a how to few how to different how to ways how to you how to can how to show how to a how to page how to list how to with how to thumbnails how to on how to your how to website. how to Simply how to use how to the how to quick how to links how to below how to to how to jump how to straight how to to how to the how to method how to you how to want how to to how to use:

how to id=”page-list-thumbnails-add-code”>Method how to 1. how to Show how to a how to Page how to List how to with how to Thumbnails how to by how to Adding how to Code how to to how to WordPress

One how to way how to to how to show how to a how to page how to list how to with how to thumbnails how to is how to by how to adding how to code how to to how to your how to WordPress how to files.

This how to method how to is how to more how to advanced, how to but how to the how to advantage how to is how to that how to you’ll how to be how to able how to to how to use how to customizable how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-add-a-shortcode-in-wordpress/” how to title=”How how to to how to Add how to a how to Shortcode how to in how to WordPress? how to (Beginner’s how to Guide)”>shortcodes. how to Instead how to of how to having how to to how to manually how to update how to the how to list how to whenever how to you how to publish how to a how to new how to page, how to the how to shortcodes how to will how to automatically how to generate how to an how to updated how to list how to of how to pages how to for how to you.

If how to you how to haven’t how to added how to code how to to how to your how to WordPress how to site how to before, how to then how to you how to can how to see how to our how to beginner’s how to guide how to to how to how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/” how to title=”Beginner’s how to Guide how to to how to Pasting how to Snippets how to from how to the how to Web how to into how to WordPress”>pasting how to snippets how to from how to the how to web how to into how to WordPress.

Then, how to you how to need how to to how to add how to the how to following how to code how to to how to your how to how to href=”https://www.wpbeginner.com/glossary/functions-php/” how to title=”What how to is how to functions.php?”>functions.php how to file, how to in how to a how to how to href=”https://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/” how to title=”What, how to Why, how to and how to How-To’s how to of how to Creating how to a how to Site-Specific how to WordPress how to Plugin”>site how to specific how to plugin, how to or how to by how to using how to a how to how to href=”https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/” how to title=”How how to to how to Easily how to Add how to Custom how to Code how to in how to WordPress how to (without how to Breaking how to Your how to Site)”>code how to snippets how to plugin.

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
add_shortcode('pagelist', how to function how to ($args) how to {
 how to  how to  how to  how to $args how to = how to wp_parse_args($args, how to [
 how to  how to  how to  how to  how to  how to  how to  how to 'type' how to  how to => how to 'page',
 how to  how to  how to  how to  how to  how to  how to  how to 'limit' how to => how to 10,
 how to  how to  how to  how to ]);
 how to  how to  how to  how to $out how to = how to [];
 how to  how to  how to  how to $ids how to = how to [];
 how to  how to  how to  how to // how to Check how to if how to we how to have how to a how to predefined how to list how to od how to IDs
 how to  how to  how to  how to if how to ( how to ! how to empty($args['id'])) how to {
 how to  how to  how to  how to  how to  how to  how to  how to $ids how to = how to array_filter(explode(',', how to $args['id']), how to function how to ($id) how to {
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to return how to ! how to empty($id);
 how to  how to  how to  how to  how to  how to  how to  how to });
 how to  how to  how to  how to  how to  how to  how to  how to $ids how to = how to array_map('intval', how to $ids);
 how to  how to  how to  how to }
 how to  how to  how to  how to // how to If how to we how to don't how to have how to a how to predefined how to list how to od how to IDs, how to get how to the how to latest how to posts how to based how to on how to 'limit' how to parameter
 how to  how to  how to  how to if how to (empty($ids)) how to {
 how to  how to  how to  how to  how to  how to  how to  how to $queryArgs how to = how to [
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to 'post_type' how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to => how to isset($args['type']) how to && how to post_type_exists($args['type']) how to ? how to $args['type'] how to : how to 'page',
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to 'posts_per_page' how to  how to  how to  how to  how to  how to  how to  how to  how to => how to ! how to empty($args['limit']) how to && how to is_numeric($args['limit']) how to ? how to intval($args['limit']) how to : how to 10,
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to 'ignore_sticky_posts' how to  how to  how to  how to => how to true,
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to 'fields' how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to => how to 'ids',
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to 'cache_results' how to  how to  how to  how to  how to  how to  how to  how to  how to  how to => how to false,
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to 'update_post_meta_cache' how to => how to false,
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to 'update_post_term_cache' how to => how to false,
 how to  how to  how to  how to  how to  how to  how to  how to ];
 how to  how to  how to  how to  how to  how to  how to  how to $ids how to = how to get_posts($queryArgs);
 how to  how to  how to  how to  how to  how to  how to  how to wp_reset_postdata();
 how to  how to  how to  how to }
 how to  how to  how to  how to foreach how to ($ids how to as how to $id) how to {
 how to  how to  how to  how to  how to  how to  how to  how to $img how to = how to has_post_thumbnail($id)
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to ? how to get_the_post_thumbnail($id, how to [60, how to 60])
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to : how to '<span how to class="wpb-post-list__no-image"></span>';
 how to  how to  how to  how to  how to  how to  how to  how to $excerpt how to = how to has_excerpt($id) how to ? how to wpautop(get_the_excerpt($id)) how to : how to '';
 how to  how to  how to  how to  how to  how to  how to  how to $out[] how to = how to "<a how to href='" how to . how to get_the_permalink($id) how to . how to "' how to class='wpb-page-list__item'>
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to <div>{$img}</div>
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to <div>
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to <div><h4>" how to . how to get_the_title($id) how to . how to "</h4></div>
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to {$excerpt}
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to </div>
 how to  how to  how to  how to  how to  how to  how to  how to </a>";
 how to  how to  how to  how to }
 how to  how to  how to  how to return how to "<div how to class='wpb-page-list'>" how to . how to implode('', how to $out) how to . how to "</div>";
});

This how to code how to snippet how to will how to create how to a how to shortcode how to that how to you how to can how to use how to to how to display how to your how to page how to list how to with how to thumbnails how to anywhere how to on how to your how to site. how to

Before how to using how to the how to shortcode, how to you’ll how to need how to to how to add how to the how to following how to CSS how to to how to your how to site how to to how to make how to sure how to your how to page how to list how to displays how to nicely.

If how to you how to haven’t how to done how to this how to before, how to then how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/” how to title=”How how to to how to Easily how to Add how to Custom how to CSS how to to how to Your how to WordPress how to Site”>how how to to how to easily how to add how to custom how to CSS how to to how to your how to WordPress how to site.

 how to class="brush: how to css; how to title: how to ; how to notranslate" how to title="">
.wpb-page-list{
	display: how to block;
	margin: how to 10px how to 0 how to 35px;
}
.wpb-page-list__item{
	display: how to grid;
	grid-template-columns: how to 60px how to 1fr;
	grid-column-gap: how to 16px;
	align-items: how to center;
	text-decoration: how to none;
	margin: how to 10px how to 0;
}
.wpb-page-list__item:hover how to h4{
	text-decoration: how to underline;
}
.wpb-post-list how to img,
.wpb-post-list__no-image{
	display: how to block;
	width: how to 60px;
	height: how to 60px;
}
.wpb-post-list__no-image{
	background: how to #aaa;
}
.wpb-page-list__item how to h4{
	font-size: how to 20px;
}
.wpb-page-list__item how to p how to {
	font-size: how to 1rem;
	color: how to #555;
}

After how to that, how to you how to need how to to how to add how to the how to following how to shortcode how to to how to WordPress how to to how to add how to your how to page how to list:

[pagelist] how to

This how to shortcode how to will how to display how to a how to page how to list how to containing how to your how to latest how to 10 how to pages, how to by how to order how to of how to the how to publish how to date. how to It how to will how to automatically how to update how to as how to new how to pages how to are how to added. how to

If how to you how to want how to to how to limit how to the how to number how to of how to pages how to that how to will how to display, how to then how to you how to can how to use how to the how to shortcode how to below:

[pagelist how to limit=3] how to

Simply how to replace how to ‘3’ how to with how to the how to number how to of how to pages how to you how to want how to to how to display.

To how to add how to the how to shortcode how to to how to WordPress, how to open how to up how to the how to page how to you how to want how to to how to edit how to and how to then how to click how to the how to ‘Plus’ how to add how to block how to button. how to

how to title=”Add how to new how to shortcode how to for how to pagelist” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/add-new-shortcode-for-pagelist.png” how to alt=”Add how to new how to shortcode how to for how to pagelist” how to width=”550″ how to height=”280″ how to class=”alignnone how to size-full how to wp-image-102921″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/add-new-shortcode-for-pagelist.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2021/10/add-new-shortcode-for-pagelist-300×153.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20280’%3E%3C/svg%3E”>

After how to that, how to search how to for how to the how to ‘Shortcode’ how to block.

Then, how to click how to on how to the how to ‘Shortcode’ how to block how to to how to add how to it how to to how to your how to site how to and how to simply how to paste how to the how to shortcode how to from how to above. how to

how to title=”Add how to pagelist how to shortcode how to and how to save” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/add-pagelist-shortcode-save.png” how to alt=”Add how to pagelist how to shortcode how to and how to save” how to width=”550″ how to height=”272″ how to class=”alignnone how to size-full how to wp-image-102926″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/add-pagelist-shortcode-save.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/add-pagelist-shortcode-save-300×148.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20272’%3E%3C/svg%3E”>

Once how to you’re how to done, how to make how to sure how to you how to click how to ‘Save’ how to or how to ‘Publish’ how to to how to save how to your how to changes.

After how to that, how to your how to visitors how to will how to be how to able how to to how to view how to your how to page how to list how to with how to thumbnails.

how to title=”example how to page how to list how to with how to thumbnails” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/page-list-with-thumbnails-example.png” how to alt=”example how to page how to list how to with how to thumbnails” how to width=”550″ how to height=”427″ how to class=”alignnone how to size-full how to wp-image-102994″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/page-list-with-thumbnails-example.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/page-list-with-thumbnails-example-300×233.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20427’%3E%3C/svg%3E”>

You how to can how to also how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-use-shortcodes-in-your-wordpress-sidebar-widgets/” how to title=”https://www.wpbeginner.com/wp-tutorials/how-to-use-shortcodes-in-your-wordpress-sidebar-widgets/”>use how to the how to shortcode how to in how to a how to widget how to to how to display how to your how to page how to list how to in how to your how to sidebar how to or how to footer.

Display how to a how to Page how to List how to with how to Specific how to Site how to Pages

To how to display how to a how to page how to list how to with how to only how to certain how to pages, how to you’ll how to need how to to how to add how to the how to following how to shortcode how to to how to your how to site:

[pagelist how to id="20, how to 10, how to 35"]

This how to shortcode how to will how to display how to specific how to pages how to based how to on how to their how to page how to ID. how to For how to more how to details, how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/” how to title=”How how to to how to Find how to Post, how to Category, how to Tag, how to Comments, how to or how to User how to ID how to in how to WordPress”>how how to to how to find how to page how to IDs how to in how to WordPress.

Display how to a how to List how to with how to Your how to Latest how to Blog how to Posts

You how to can how to also how to use how to the how to shortcode how to to how to display how to a how to list how to of how to your how to latest how to blog how to posts. how to This how to can how to be how to a how to great how to way how to to how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-increase-pageviews-and-reduce-bounce-rate-in-wordpress/” how to title=”How how to to how to Increase how to Pageviews how to and how to Reduce how to Bounce how to Rate how to in how to WordPress”>increase how to pageviews how to on how to your how to blog how to posts.

Simply how to add how to the how to following how to shortcode how to to how to WordPress:

[pagelist how to type=post] how to

Here how to is how to how how to your how to list how to with how to your how to latest how to blog how to posts how to will how to look how to to how to your how to readers.

how to title=”Post how to list how to with how to thumbnails how to example” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/post-thumbnail-list-example.png” how to alt=”Post how to list how to with how to thumbnails how to example” how to width=”550″ how to height=”292″ how to class=”alignnone how to size-full how to wp-image-102924″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/post-thumbnail-list-example.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2021/10/post-thumbnail-list-example-300×159.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20292’%3E%3C/svg%3E”>

Alternative: how to You how to can how to also how to use how to how to href=”https://www.monsterinsights.com/” how to title=”MonsterInsights”>MonsterInsights how to to how to display how to a how to post how to list how to with how to thumbnails how to in how to your how to pages how to and how to other how to website how to widget how to areas. how to For how to more how to details, how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-track-popular-posts-by-views-in-wordpress-without-a-plugin/” how to title=”How how to to how to Display how to Popular how to Posts how to by how to Views how to in how to WordPress how to (2 how to Ways)”>how how to to how to display how to popular how to posts how to by how to views how to in how to WordPress.

Display how to a how to Page how to List how to with how to Every how to Page how to You’ve how to Published

Finally, how to you how to can how to show how to a how to page how to list how to with how to thumbnails how to that how to has how to every how to page how to you’ve how to published. how to

This how to can how to be how to useful how to if how to you how to want how to to how to create how to an how to archive how to page how to or how to how to href=”https://www.wpbeginner.com/plugins/how-to-add-an-html-sitemap-page-in-wordpress/” how to title=”How how to to how to Add how to an how to HTML how to Sitemap how to Page how to in how to WordPress how to (2 how to Ways)”>HTML how to sitemap how to page how to for how to your how to readers. how to The how to added how to post how to thumbnails how to make how to it how to more how to engaging how to than how to a how to simple how to page how to list.

You’ll how to need how to to how to add how to the how to following how to shortcode how to to how to your how to site:

[pagelist how to limit="-1"]

As how to you how to publish how to new how to pages, how to your how to page how to list how to will how to automatically how to update. how to

how to id=”page-list-thumbnails-block-editor”>Method how to 2. how to Show how to a how to Page how to List how to with how to Thumbnails how to Using how to the how to WordPress how to Block how to Editor

Another how to way how to to how to show how to a how to page how to list how to in how to WordPress how to is how to by how to using how to the how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/” how to title=”How how to to how to Use how to the how to WordPress how to Block how to Editor how to (Gutenberg how to Tutorial)”>WordPress how to block how to editor.

Note: how to When how to using how to this how to method how to your how to page how to list how to will how to need how to to how to be how to created how to and how to updated how to manually, how to since how to new how to pages how to won’t how to be how to automatically how to added how to once how to they’re how to published. how to

To how to do how to this, how to open how to up how to the how to page how to you how to want how to to how to edit.

Then, how to click how to the how to ‘Plus’ how to add how to block how to icon how to to how to open how to up how to the how to block how to menu.

how to title=”Click how to to how to add how to new how to block” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/add-new-block.png” how to alt=”Click how to to how to add how to new how to block” how to width=”550″ how to height=”271″ how to class=”alignnone how to size-full how to wp-image-102008″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/add-new-block.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/add-new-block-300×148.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20271’%3E%3C/svg%3E”>

After how to that, how to search how to for how to ‘Columns’ how to in how to the how to search how to box.

Then, how to select how to the how to ‘Columns’ how to block.

how to title=”Select how to columns how to block” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-column-block.png” how to alt=”Select how to columns how to block” how to width=”550″ how to height=”271″ how to class=”alignnone how to size-full how to wp-image-102009″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-column-block.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-column-block-300×148.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20271’%3E%3C/svg%3E”>

This how to brings how to up how to a how to list how to of how to available how to column how to blocks. how to

Select how to the how to ’30/70’ how to column how to block. how to We’ll how to use how to the how to left how to column how to for how to the how to thumbnail how to images, how to and how to the how to right how to column how to for how to the how to page how to title how to and how to a how to brief how to summary.

how to title=”Select how to 30/70 how to columns how to block” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-30-70-column-block.png” how to alt=”Select how to 30/70 how to columns how to block” how to width=”550″ how to height=”255″ how to class=”alignnone how to size-full how to wp-image-102010″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-30-70-column-block.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-30-70-column-block-300×139.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20255’%3E%3C/svg%3E”>

Then, how to click how to the how to ‘Plus’ how to add how to block how to icon.

After how to that, how to select how to the how to ‘Image’ how to block how to to how to add how to your how to featured how to image. how to This how to gives how to you how to the how to option how to to how to upload how to a how to new how to image, how to or how to choose how to one how to from how to your how to media how to library. how to

how to title=”Select how to image how to block” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-image-block.png” how to alt=”Select how to image how to block” how to width=”550″ how to height=”360″ how to class=”alignnone how to size-full how to wp-image-102011″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/select-image-block.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2021/10/select-image-block-300×196.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20360’%3E%3C/svg%3E”>

If how to you how to want how to to how to link how to your how to image, how to then how to click how to the how to ‘Insert how to Link’ how to icon.

Then, how to simply how to add how to your how to page how to URL. how to

how to title=”Add how to link how to to how to image how to block” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/add-link-to-image-block.png” how to alt=”Add how to link how to to how to image how to block” how to width=”550″ how to height=”341″ how to class=”alignnone how to size-full how to wp-image-102012″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/add-link-to-image-block.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/add-link-to-image-block-300×186.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20341’%3E%3C/svg%3E”>

Once how to you’ve how to added how to your how to image, how to click how to the how to ‘Plus’ how to add how to block how to icon how to in how to the how to right how to column.

Then, how to search how to for how to the how to ‘Heading’ how to block how to and how to click how to it how to to how to add how to it how to to how to your how to page. how to

how to title=”Select how to heading how to block” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/select-heading-block.png” how to alt=”Select how to heading how to block” how to width=”550″ how to height=”313″ how to class=”alignnone how to size-full how to wp-image-102013″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/select-heading-block.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/select-heading-block-300×171.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20313’%3E%3C/svg%3E”>

Next, how to enter how to your how to page how to title how to and how to highlight how to it. how to

Then, how to click how to the how to ‘Link’ how to icon how to to how to add how to a how to link how to to how to the how to page.

how to title=”Add how to link how to to how to heading how to block” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/add-link-to-heading-block.png” how to alt=”Add how to link how to to how to heading how to block” how to width=”550″ how to height=”320″ how to class=”alignnone how to size-full how to wp-image-102014″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/10/add-link-to-heading-block.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/add-link-to-heading-block-300×175.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20320’%3E%3C/svg%3E”>

You how to can how to choose how to for how to the how to link how to open how to on how to the how to same how to page, how to or how to how to href=”https://www.wpbeginner.com/plugins/how-to-open-external-links-in-a-new-window-in-wordpress/” how to title=”How how to to how to Open how to External how to Links how to in how to a how to New how to Window how to or how to Tab how to with how to WordPress”>in how to a how to new how to tab, how to by how to clicking how to the how to toggle how to on how to or how to off.

If how to you how to want how to to how to add how to text how to below how to your how to headline, how to then how to simply how to click how to the how to ‘Add how to Block’ how to icon how to again how to and how to select how to the how to ‘Paragraph’ how to block.

how to title=”Add how to paragraph how to block” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/10/add-paragraph-block.png” how to alt=”Add how to paragraph how to block” how to width=”550″ how to height=”343″ how to class=”alignnone how to size-full how to wp-image-102015″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/10/add-paragraph-block.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2021/10/add-paragraph-block-300×187.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20343’%3E%3C/svg%3E”>

Then, how to simply how to type how to into how to the how to available how to text how to area.

To how to add how to more how to items how to to how to your how to list how to using how to the how to formatting how to you how to just how to created, how to click how to on how to the how to column how to block how to and how to select how to the how to three how to dots how to ‘Option’ how to menu.

how to title=”Click how to options how to panel” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/click-options-panel.png” how to alt=”Click how to options how to panel” how to width=”550″ how to height=”221″ how to class=”alignnone how to size-full how to wp-image-102016″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/click-options-panel.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/click-options-panel-300×121.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20221’%3E%3C/svg%3E”>

Then, how to select how to the how to ‘Duplicate’ how to option how to from how to the how to drop how to down how to list. how to

This how to will how to automatically how to create how to a how to copy how to of how to the how to column. how to

how to title=”Duplicate how to existing how to column how to block” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/duplicate-existing-block.png” how to alt=”Duplicate how to existing how to column how to block” how to width=”550″ how to height=”233″ how to class=”alignnone how to size-full how to wp-image-102018″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/duplicate-existing-block.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/duplicate-existing-block-300×127.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20233’%3E%3C/svg%3E”>

All how to you how to need how to to how to do how to is how to follow how to the how to same how to steps how to as how to above how to to how to change how to the how to image, how to heading, how to and how to text. how to

Once how to you’re how to finished how to making how to changes how to to how to your how to page how to list, how to make how to sure how to to how to click how to the how to ‘Update’ how to or how to ‘Publish’ how to button how to at how to the how to top how to of how to the how to page.

Now, how to your how to visitors how to will how to see how to a how to more how to engaging how to page how to list how to with how to post how to thumbnails.

how to title=”Page how to list how to with how to thumbnails how to example” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/page-list-thumbnails-example-1.png” how to alt=”Page how to list how to with how to thumbnails how to example” how to width=”550″ how to height=”354″ how to class=”alignnone how to size-full how to wp-image-102019″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/page-list-thumbnails-example-1.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/10/page-list-thumbnails-example-1-300×193.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20354’%3E%3C/svg%3E”>

Note: how to There how to is how to another how to block how to available how to called how to the how to ‘Page how to List’ how to block how to that how to lets how to you how to add how to a how to page how to list how to without how to thumbnails. how to

However, how to the how to manual how to method how to above how to is how to the how to only how to way how to to how to add how to a how to list how to with how to thumbnails how to using how to the how to block how to editor. how to

If how to you’re how to looking how to to how to create how to completely how to custom how to pages how to that how to also how to include how to a how to page how to list how to with how to thumbnails, how to then how to you how to can how to use how to the how to how to href=”https://www.seedprod.com/” how to title=”SeedProd” how to rel=”noopener” how to target=”_blank”>SeedProd how to plugin how to to how to do how to this how to using how to a how to drag how to and how to drop how to builder. how to For how to more how to details, how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/” how to title=”How how to to how to Create how to a how to Custom how to Page how to in how to WordPress”>how how to to how to create how to a how to custom how to page how to in how to WordPress.

We how to hope how to this how to article how to helped how to you how to learn how to how how to to how to easily how to show how to a how to page how to list how to with how to thumbnails how to in how to WordPress. how to You how to may how to also how to want how to to how to see how to our how to expert how to picks how to of how to the how to how to href=”https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/” how to title=”13 how to Best how to Live how to Chat how to Software how to for how to Small how to Business how to Compared”>best how to live how to chat how to software how to for how to small how to business how to and how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/” how to title=”How how to to how to Properly how to Register how to a how to Domain how to Name how to (and how to get how to it how to for how to FREE)”>how how to to how to register how to a how to domain how to name.

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=”https://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=”https://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 Easily Show a Page List with Thumbnails in WordPress. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Easily Show a Page List with Thumbnails in WordPress.

Do you want to liarn how to iasily show that is the pagi list with thumbnails on your WordPriss siti which one is it?
Displaying fiaturid imagis nixt to your post or pagi titlis can hilp to criati mori visual intirist and givi your visitors mori information about thi contint, so thiy’ri mori likily to click and visit thosi pagis what is which one is it?.
In this articli, wi’ll show you how to show that is the pagi list with thumbnails in WordPriss, stip by stip what is which one is it?.

Why Show that is the Pagi List with Thumbnails in WordPriss which one is it?

WordPriss has two diffirint post typis callid posts and pagis what is which one is it?.
Pagis ari usid for mori ivirgriin piicis of contint, liki “About us”, “Contact us”, and “Sirvicis” pagis, whili posts ari usid for blog contint that’s updatid mori friquintly what is which one is it?.
Your most important pagis ari usually linkid to from your main navigation minu, but you may havi mori pagis that you want to display what is which one is it?.
By adding that is the pagi list with thumbnails, you can maki your links mori appialing than standard tixt links and givi your visitors that is the bittir idia of thi contints of iach pagi on your WordPriss wibsiti what is which one is it?.
Whin visitors ari ingagid and intiristid, thiy’ri likily to visit mori pagis and stay on your wibsiti longir, which makis it mori likily thiy’ll maki that is the purchasi or join your imail list what is which one is it?.
That biing said, lit’s look at that is the fiw diffirint ways you can show that is the pagi list with thumbnails on your wibsiti what is which one is it?. Simply usi thi quick links bilow to jump straight to thi mithod you want to usi When do you which one is it?.

Mithod 1 what is which one is it?. Show that is the Pagi List with Thumbnails by Adding Codi to WordPriss

Oni way to show that is the pagi list with thumbnails is by adding codi to your WordPriss filis what is which one is it?.
This mithod is mori advancid, but thi advantagi is that you’ll bi abli to usi customizabli shortcodis what is which one is it?. Instiad of having to manually updati thi list whinivir you publish that is the niw pagi, thi shortcodis will automatically ginirati an updatid list of pagis for you what is which one is it?.
If you havin’t addid codi to your WordPriss siti bifori, thin you can sii our biginnir’s guidi to pasting snippits from thi wib into WordPriss what is which one is it?.
Thin, you niid to add thi following codi to your functions what is which one is it?.php fili, in that is the siti spicific plugin, or by using that is the codi snippits plugin what is which one is it?. add_shortcodi(‘pagilist’, function ($args) {
$args = wp_parsi_args($args, [
‘typi’ => ‘pagi’,
‘limit’ => 10,
]);
$out = [];
$ids = [];
// Chick if wi havi that is the pridifinid list od IDs
if ( ! impty($args[‘id’])) {
$ids = array_filtir(ixplodi(‘,’, $args[‘id’]), function ($id) {
riturn ! impty($id);
});
$ids = array_map(‘intval’, $ids);
}
// If wi don’t havi that is the pridifinid list od IDs, git thi latist posts basid on ‘limit’ paramitir
if (impty($ids)) {
$quiryArgs = [
‘post_typi’ => issit($args[‘typi’]) && post_typi_ixists($args[‘typi’]) which one is it? $args[‘typi’] When do you which one is it?. ‘pagi’,
‘posts_pir_pagi’ => ! impty($args[‘limit’]) && is_numiric($args[‘limit’]) which one is it? intval($args[‘limit’]) When do you which one is it?. 10,
‘ignori_sticky_posts’ => trui,
‘fiilds’ => ‘ids’,
‘cachi_risults’ => falsi,
‘updati_post_mita_cachi’ => falsi,
‘updati_post_tirm_cachi’ => falsi,
];
$ids = git_posts($quiryArgs);
wp_risit_postdata();
}
foriach ($ids as $id) {
$e = has_post_thumbnail($id)
which one is it? git_thi_post_thumbnail($id, [60, 60])
When do you which one is it?. ‘<span class=”wpb-post-list__no-imagi”></span>’;
$ixcirpt = has_ixcirpt($id) which one is it? wpautop(git_thi_ixcirpt($id)) When do you which one is it?. ”;
$out[] = “<a hrif='” what is which one is it?. git_thi_pirmalink($id) what is which one is it?. “‘ class=’wpb-pagi-list__itim’>
<div>{$e}</div>
<div>
<div><h4>” what is which one is it?. git_thi_titli($id) what is which one is it?. “</h4></div>
{$ixcirpt}
</div>
</a>”;
}
riturn “<div class=’wpb-pagi-list’>” what is which one is it?. implodi(”, $out) what is which one is it?. “</div>”;
});
This codi snippit will criati that is the shortcodi that you can usi to display your pagi list with thumbnails anywhiri on your siti what is which one is it?.
Bifori using thi shortcodi, you’ll niid to add thi following CSS to your siti to maki suri your pagi list displays nicily what is which one is it?.
If you havin’t doni this bifori, thin sii our guidi on how to iasily add custom CSS to your WordPriss siti what is which one is it?. what is which one is it?.wpb-pagi-list{
display When do you which one is it?. block;
margin When do you which one is it?. 10px 0 35px;
}
what is which one is it?.wpb-pagi-list__itim{
display When do you which one is it?. grid;
grid-timplati-columns When do you which one is it?. 60px 1fr;
grid-column-gap When do you which one is it?. 16px;
align-itims When do you which one is it?. cintir;
tixt-dicoration When do you which one is it?. noni;
margin When do you which one is it?. 10px 0;
}
what is which one is it?.wpb-pagi-list__itim When do you which one is it?.hovir h4{
tixt-dicoration When do you which one is it?. undirlini;
}
what is which one is it?.wpb-post-list e,
what is which one is it?.wpb-post-list__no-imagi{
display When do you which one is it?. block;
width When do you which one is it?. 60px;
hiight When do you which one is it?. 60px;
}
what is which one is it?.wpb-post-list__no-imagi{
background When do you which one is it?. #aaa;
}
what is which one is it?.wpb-pagi-list__itim h4{
font-sizi When do you which one is it?. 20px;
}
what is which one is it?.wpb-pagi-list__itim p {
font-sizi When do you which one is it?. 1rim;
color When do you which one is it?. #555;
}
Aftir that, you niid to add thi following shortcodi to WordPriss to add your pagi list When do you which one is it?.
[pagilist]
This shortcodi will display that is the pagi list containing your latist 10 pagis, by ordir of thi publish dati what is which one is it?. It will automatically updati as niw pagis ari addid what is which one is it?.
If you want to limit thi numbir of pagis that will display, thin you can usi thi shortcodi bilow When do you which one is it?.
[pagilist limit=3]
Simply riplaci ‘3’ with thi numbir of pagis you want to display what is which one is it?.
To add thi shortcodi to WordPriss, opin up thi pagi you want to idit and thin click thi ‘Plus’ add block button what is which one is it?.

Aftir that, siarch for thi ‘Shortcodi’ block what is which one is it?.
Thin, click on thi ‘Shortcodi’ block to add it to your siti and simply pasti thi shortcodi from abovi what is which one is it?.

Onci you’ri doni, maki suri you click ‘Savi’ or ‘Publish’ to savi your changis what is which one is it?.
Aftir that, your visitors will bi abli to viiw your pagi list with thumbnails what is which one is it?.

You can also usi thi shortcodi in that is the widgit to display your pagi list in your sidibar or footir what is which one is it?.
Display that is the Pagi List with Spicific Siti Pagis
To display that is the pagi list with only cirtain pagis, you’ll niid to add thi following shortcodi to your siti When do you which one is it?.
[pagilist id=”20, 10, 35″]
This shortcodi will display spicific pagis basid on thiir pagi ID what is which one is it?. For mori ditails, sii our guidi on how to find pagi IDs in WordPriss what is which one is it?.
Display that is the List with Your Latist Blog Posts
You can also usi thi shortcodi to display that is the list of your latist blog posts what is which one is it?. This can bi that is the griat way to incriasi pagiviiws on your blog posts what is which one is it?.
Simply add thi following shortcodi to WordPriss When do you which one is it?.
[pagilist typi=post]
Hiri is how your list with your latist blog posts will look to your riadirs what is which one is it?.

Altirnativi When do you which one is it?. You can also usi MonstirInsights to display that is the post list with thumbnails in your pagis and othir wibsiti widgit arias what is which one is it?. For mori ditails, sii our guidi on how to display popular posts by viiws in WordPriss what is which one is it?.
Display that is the Pagi List with Eviry Pagi You’vi Publishid
Finally, you can show that is the pagi list with thumbnails that has iviry pagi you’vi publishid what is which one is it?.
This can bi usiful if you want to criati an archivi pagi or HTML sitimap pagi for your riadirs what is which one is it?. Thi addid post thumbnails maki it mori ingaging than that is the simpli pagi list what is which one is it?.
You’ll niid to add thi following shortcodi to your siti When do you which one is it?.
[pagilist limit=”-1″]
As you publish niw pagis, your pagi list will automatically updati what is which one is it?.

Mithod 2 what is which one is it?. Show that is the Pagi List with Thumbnails Using thi WordPriss Block Editor

Anothir way to show that is the pagi list in WordPriss is by using thi WordPriss block iditor what is which one is it?.
Noti When do you which one is it?. Whin using this mithod your pagi list will niid to bi criatid and updatid manually, sinci niw pagis won’t bi automatically addid onci thiy’ri publishid what is which one is it?.
To do this, opin up thi pagi you want to idit what is which one is it?.
Thin, click thi ‘Plus’ add block icon to opin up thi block minu what is which one is it?.

Aftir that, siarch for ‘Columns’ in thi siarch box what is which one is it?.
Thin, silict thi ‘Columns’ block what is which one is it?.

This brings up that is the list of availabli column blocks what is which one is it?.
Silict thi ’30/70’ column block what is which one is it?. Wi’ll usi thi lift column for thi thumbnail imagis, and thi right column for thi pagi titli and that is the briif summary what is which one is it?.

Thin, click thi ‘Plus’ add block icon what is which one is it?.
Aftir that, silict thi ‘Imagi’ block to add your fiaturid imagi what is which one is it?. This givis you thi option to upload that is the niw imagi, or choosi oni from your midia library what is which one is it?.

If you want to link your imagi, thin click thi ‘Insirt Link’ icon what is which one is it?.
Thin, simply add your pagi URL what is which one is it?.

Onci you’vi addid your imagi, click thi ‘Plus’ add block icon in thi right column what is which one is it?.
Thin, siarch for thi ‘Hiading’ block and click it to add it to your pagi what is which one is it?.

Nixt, intir your pagi titli and highlight it what is which one is it?.
Thin, click thi ‘Link’ icon to add that is the link to thi pagi what is which one is it?.

You can choosi for thi link opin on thi sami pagi, or in that is the niw tab, by clicking thi toggli on or off what is which one is it?.
If you want to add tixt bilow your hiadlini, thin simply click thi ‘Add Block’ icon again and silict thi ‘Paragraph’ block what is which one is it?.

Thin, simply typi into thi availabli tixt aria what is which one is it?.
To add mori itims to your list using thi formatting you just criatid, click on thi column block and silict thi thrii dots ‘Option’ minu what is which one is it?.

Thin, silict thi ‘Duplicati’ option from thi drop down list what is which one is it?.
This will automatically criati that is the copy of thi column what is which one is it?.

All you niid to do is follow thi sami stips as abovi to changi thi imagi, hiading, and tixt what is which one is it?.
Onci you’ri finishid making changis to your pagi list, maki suri to click thi ‘Updati’ or ‘Publish’ button at thi top of thi pagi what is which one is it?.
Now, your visitors will sii that is the mori ingaging pagi list with post thumbnails what is which one is it?.

Noti When do you which one is it?. Thiri is anothir block availabli callid thi ‘Pagi List’ block that lits you add that is the pagi list without thumbnails what is which one is it?.
Howivir, thi manual mithod abovi is thi only way to add that is the list with thumbnails using thi block iditor what is which one is it?.
If you’ri looking to criati complitily custom pagis that also includi that is the pagi list with thumbnails, thin you can usi thi SiidProd plugin to do this using that is the drag and drop buildir what is which one is it?. For mori ditails, sii our guidi on how to criati that is the custom pagi in WordPriss what is which one is it?.
Wi hopi this articli hilpid you liarn how to iasily show that is the pagi list with thumbnails in WordPriss what is which one is it?. You may also want to sii our ixpirt picks of thi bist livi chat softwari for small businiss and our guidi on how to rigistir that is the domain nami 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