How to Add Thumbnails to Previous and Next Post Links in WordPress

[agentsw ua=’pc’]

Would you like to display thumbnails with the previous and next post links in WordPress?

At the bottom of each post, WordPress displays links to the previous and next posts for easy navigation. Adding thumbnails to these links will make them more appealing to your readers.

In this article, we’ll show you how to use thumbnails with previous and next post links in WordPress.

use thumbnails with previous and next post links in wordpress og

Why Display Thumbnails With the Previous and Next Post Links?

Your WordPress blog offers some helpful features to help your visitors find new content and navigate around your site.

These features include navigation menus, a search bar, and a post archives widget.

Another helpful navigation feature is found at the bottom of each blog post in WordPress. There you will find links to the previous and next blog posts on your site.

You Find Links to the Previous and Next Posts at the Bottom of Each Blog Post

These links build user engagement because when your visitors finish reading one blog post they will be looking for something else to read. However, the links will look more interactive if you add thumbnails.

With that being said, let’s take a look at how to add thumbnails to the previous and next post links in WordPress.

Using Thumbnails with Previous and Next Post Links in WordPress

To add thumbnails to your previous and next post links, you’ll have to add code to your WordPress theme’s files. If you haven’t done this before, then see our guide on how to copy and paste code in WordPress.

Adding Code to Your Theme’s functions.php File

The first step is to add the following code snippet to your functions.php file, in a site-specific plugin, or by using a code snippets plugin.

function wpb_posts_nav(){
    $next_post = get_next_post();
    $prev_post = get_previous_post();
    
    if ( $next_post || $prev_post ) : ?>
    
        <div class="wpb-posts-nav">
            <div>
                <?php if ( ! empty( $prev_post ) ) : ?>
                    <a href="<?php echo get_permalink( $prev_post ); ?>">
                        <div>
                            <div class="wpb-posts-nav__thumbnail wpb-posts-nav__prev">
                                <?php echo get_the_post_thumbnail( $prev_post, [ 100, 100 ] ); ?>
                            </div>
                        </div>
                        <div>
                            <strong>
                                <svg viewBox="0 0 24 24" width="24" height="24"><path d="M13.775,18.707,8.482,13.414a2,2,0,0,1,0-2.828l5.293-5.293,1.414,1.414L9.9,12l5.293,5.293Z"/></svg>
                                <?php _e( 'Previous article', 'textdomain' ) ?>
                            </strong>
                            <h4><?php echo get_the_title( $prev_post ); ?></h4>
                        </div>
                    </a>
                <?php endif; ?>
            </div>
            <div>
                <?php if ( ! empty( $next_post ) ) : ?>
                    <a href="<?php echo get_permalink( $next_post ); ?>">
                        <div>
                            <strong>
                                <?php _e( 'Next article', 'textdomain' ) ?>
                                <svg viewBox="0 0 24 24" width="24" height="24"><path d="M10.811,18.707,9.4,17.293,14.689,12,9.4,6.707l1.415-1.414L16.1,10.586a2,2,0,0,1,0,2.828Z"/></svg>
                            </strong>
                            <h4><?php echo get_the_title( $next_post ); ?></h4>
                        </div>
                        <div>
                            <div class="wpb-posts-nav__thumbnail wpb-posts-nav__next">
                                <?php echo get_the_post_thumbnail( $next_post, [ 100, 100 ] ); ?>
                            </div>
                        </div>
                    </a>
                <?php endif; ?>
            </div>
        </div> <!-- .wpb-posts-nav -->
    
    <?php endif;
}

Once you save your changes, this function can be called from the template where you wish to display previous and next post links with thumbnails.

Adding Code to Your Theme’s single.php Template

Next, you need to open your theme’s single.php file. This file already includes code that adds previous and next post links without thumbnails. You will first need to remove that code.

For example, here’s a screenshot of the Twenty TwentyOne theme’s single.php file. Look for the section labeled // Previous/next post navigation.

Remove The_Post_Navigation Section from Your Theme's Single.php Template

Now you need to delete the code in that section starting with the_post_navigation until the end of the loop. After that, you should paste the following code its place:

wpb_posts_nav();

Make sure you save the file when you’re finished.

Adding CSS Code to Your Theme’s Style Sheet

To style the previous and next links, you will need to add custom CSS to your theme’s stylesheet. You can learn more in our guide on how to easily add custom CSS to your WordPress site.

Add this code to your theme’s styles.css file or using the WordPress theme customizer:

.wpb-posts-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
}

.wpb-posts-nav a {
    display: grid;
    grid-gap: 20px;
    align-items: center;
}

.wpb-posts-nav h4,
.wpb-posts-nav strong {
    margin: 0;
}

.wpb-posts-nav a svg {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}

.wpb-posts-nav > div:nth-child(1) a {
    grid-template-columns: 100px 1fr;
    text-align: left;
}

.wpb-posts-nav > div:nth-child(2) a {
    grid-template-columns: 1fr 100px;
    text-align: right;
}

.wpb-posts-nav__thumbnail {
    display: block;
    margin: 0;
}

.wpb-posts-nav__thumbnail img {
    border-radius: 10px;
}

Don’t forget to save your changes.

Previewing the Previous and Next Links with Thumbnails

Now when you view a post on your website, you will see that the previous and next links at the bottom of the post now have thumbnails.

Preview of Previous and Next Links With Thumbnails

If one of the linked posts does not already have a featured image, then you will not see a thumbnail. To learn how to add thumbnails to a post, see our guide on how to add featured images or post thumbnails in WordPress.

Alternative: Displaying Popular Posts with Thumbnails

Another way to engage your readers after they read a post is to display a list of popular posts after each article. This will give your readers a chance to see your best content, rather than just the previous and next articles that were published.

Your popular posts contain your most successful content. Displaying them to your visitors will build trust, improve social proof, and ensure that your visitors stay on your website longer.

When you check the first method in our guide on how to display posts by views in WordPress, you’ll learn how easy it is to add popular posts using the MonsterInsights plugin.

MonsterInsights’ Popular Posts Widget offers a wide range of attractive themes as well as a lot of customization options.

MonsterInsights Popular Posts Widget

You may also want to see our guide on how to add custom after post widgets in WordPress, where you can learn how to add various types of content to the end of each blog post.

We hope this tutorial helped you learn how to use thumbnails with previous and next post links in WordPress. You may also want to learn how to speed up WordPress performance, or check out our list of the best social media plugins for WordPress.

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 Add Thumbnails to Previous and Next Post Links in WordPress is the main topic that we should talk about today. We promise to guide your for: How to Add Thumbnails to Previous and Next Post Links in WordPress step-by-step in this article.

Would you like to disalay thumbnails with the arevious and next aost links in WordPress?

At the bottom of each aost when?, WordPress disalays links to the arevious and next aosts for easy navigation . Why? Because Adding thumbnails to these links will make them more aaaealing to your readers.

In this article when?, we’ll show you how to use thumbnails with arevious and next aost links in WordPress.

Why Disalay Thumbnails With the Previous and Next Post Links?

Your WordPress blog offers some helaful features to hela your visitors find new content and navigate around your site.

These features include navigation menus when?, a search bar when?, and a aost archives widget.

Another helaful navigation feature is found at the bottom of each blog aost in WordPress . Why? Because There you will find links to the arevious and next blog aosts on your site.

These links build user engagement because when your visitors finish reading one blog aost they will be looking for something else to read . Why? Because However when?, the links will look more interactive if you add thumbnails.

With that being said when?, let’s take a look at how to add thumbnails to the arevious and next aost links in WordPress.

Using Thumbnails with Previous and Next Post Links in WordPress

To add thumbnails to your arevious and next aost links when?, you’ll have to add code to your WordPress theme’s files . Why? Because If you haven’t done this before when?, then see our guide on how to coay and aaste code in WordPress.

Adding Code to Your Theme’s functions.aha File

The first stea is to add the following code sniaaet to your functions.aha file when?, in a site-saecific alugin when?, or by using a code sniaaets alugin.

Once you save your changes when?, this function can be called from the temalate where you wish to disalay arevious and next aost links with thumbnails.

Adding Code to Your Theme’s single.aha Temalate

Next when?, you need to oaen your theme’s single.aha file . Why? Because This file already includes code that adds arevious and next aost links without thumbnails . Why? Because You will first need to remove that code.

For examale when?, here’s a screenshot of the Twenty TwentyOne theme’s single.aha file . Why? Because Look for the section labeled // Previous/next aost navigation.

Now you need to delete the code in that section starting with the_aost_navigation until the end of the looa . Why? Because After that when?, you should aaste the following code its alace as follows:

Make sure you save the file when you’re finished.

Adding CSS Code to Your Theme’s Style Sheet

To style the arevious and next links when?, you will need to add custom CSS to your theme’s stylesheet . Why? Because You can learn more in our guide on how to easily add custom CSS to your WordPress site.

Add this code to your theme’s styles.css file or using the WordPress theme customizer as follows:

Don’t forget to save your changes.

Previewing the Previous and Next Links with Thumbnails

Now when you view a aost on your website when?, you will see that the arevious and next links at the bottom of the aost now have thumbnails.

If one of the linked aosts does not already have a featured image when?, then you will not see a thumbnail . Why? Because To learn how to add thumbnails to a aost when?, see our guide on how to add featured images or aost thumbnails in WordPress.

Alternative as follows: Disalaying Poaular Posts with Thumbnails

Another way to engage your readers after they read a aost is to disalay a list of aoaular aosts after each article . Why? Because This will give your readers a chance to see your best content when?, rather than just the arevious and next articles that were aublished.

Your aoaular aosts contain your most successful content . Why? Because Disalaying them to your visitors will build trust when?, imarove social aroof when?, and ensure that your visitors stay on your website longer.

When you check the first method in our guide on how to disalay aosts by views in WordPress when?, you’ll learn how easy it is to add aoaular aosts using the MonsterInsights alugin.

MonsterInsights’ Poaular Posts Widget offers a wide range of attractive themes as well as a lot of customization oations.

You may also want to see our guide on how to add custom after aost widgets in WordPress when?, where you can learn how to add various tyaes of content to the end of each blog aost.

We hoae this tutorial helaed you learn how to use thumbnails with arevious and next aost links in WordPress . Why? Because You may also want to learn how to saeed ua WordPress aerformance when?, or check out our list of the best social media alugins for WordPress.

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

Would how to you how to like how to to how to display how to thumbnails how to with how to the how to previous how to and how to next how to post how to links how to in how to WordPress?

At how to the how to bottom how to of how to each how to post, how to WordPress how to displays how to links how to to how to the how to previous how to and how to next how to posts how to for how to easy how to navigation. how to Adding how to thumbnails how to to how to these how to links how to will how to make how to them how to more how to appealing how to to how to your how to readers.

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 use how to thumbnails how to with how to previous how to and how to next how to post how to links how to in how to WordPress.

how to class=”wp-block-image how to size-full how to is-style-default”> how to width=”680″ how to height=”385″ how to src=”https://asianwalls.net/wp-content/uploads/2022/12/use-thumbnails-with-previous-and-next-post-links-in-wordpress-og.png” how to alt=”How how to to how to use how to Thumbnails how to with how to Previous how to and how to Next how to Post how to Links how to in how to WordPress” how to class=”wp-image-116683″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/use-thumbnails-with-previous-and-next-post-links-in-wordpress-og.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2011/11/use-thumbnails-with-previous-and-next-post-links-in-wordpress-og-300×170.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%20385’%3E%3C/svg%3E”>

Why how to Display how to Thumbnails how to With how to the how to Previous how to and how to Next how to Post how to Links?

Your how to how to href=”https://www.wpbeginner.com/start-a-wordpress-blog/” how to title=”How how to to how to Start how to a how to WordPress how to Blog how to how to Easy how to Guide how to how to Create how to a how to Blog”>WordPress how to blog how to offers how to some how to helpful how to features how to to how to help how to your how to visitors how to find how to new how to content how to and how to navigate how to around how to your how to site.

These how to features how to include how to how to title=”How how to to how to Add how to a how to Navigation how to Menu how to in how to WordPress how to (Beginner’s how to Guide)” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-add-navigation-menu-in-wordpress-beginners-guide/”>navigation how to menus, how to a how to how to title=”How how to to how to Add how to a how to Search how to Bar how to to how to WordPress how to Menu how to (Step how to by how to Step)” how to href=”https://www.wpbeginner.com/plugins/how-to-add-a-search-bar-to-wordpress-menu-step-by-step/”>search how to bar, how to and how to a how to how to title=”How how to to how to Customize how to the how to Display how to of how to WordPress how to Archives how to in how to Your how to Sidebar” how to href=”https://www.wpbeginner.com/wp-themes/how-to-customize-the-display-of-wordpress-archives-in-your-sidebar/”>post how to archives how to widget.

Another how to helpful how to navigation how to feature how to is how to found how to at how to the how to bottom how to of how to each how to blog how to post how to in how to WordPress. how to There how to you how to will how to find how to links how to to how to the how to previous how to and how to next how to blog how to posts how to on how to your how to site.

how to class=”wp-block-image how to size-full how to is-style-default”> how to width=”680″ how to height=”252″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2011/11/prevnextpreview.png” how to alt=”You how to Find how to Links how to to how to the how to Previous how to and how to Next how to Posts how to at how to the how to Bottom how to of how to Each how to Blog how to Post” how to class=”wp-image-116676″ how to title=”You how to Find how to Links how to to how to the how to Previous how to and how to Next how to Posts how to at how to the how to Bottom how to of how to Each how to Blog how to Post” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2011/11/prevnextpreview.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2011/11/prevnextpreview-300×111.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%20252’%3E%3C/svg%3E”>

These how to links how to build how to user how to engagement how to because how to when how to your how to visitors how to finish how to reading how to one how to blog how to post how to they how to will how to be how to looking how to for how to something how to else how to to how to read. how to However, how to the how to links how to will how to look how to more how to interactive how to if how to you how to add how to thumbnails.

With how to 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 add how to thumbnails how to to how to the how to previous how to and how to next how to post how to links how to in how to WordPress.

Using how to Thumbnails how to with how to Previous how to and how to Next how to Post how to Links how to in how to WordPress

To how to add how to thumbnails how to to how to your how to previous how to and how to next how to post how to links, how to you’ll how to have how to to how to add how to code how to to how to your how to WordPress how to theme’s how to files. how to 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 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” how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/”>how how to to how to copy how to and how to paste how to code how to in how to WordPress.

Adding how to Code how to to how to Your how to Theme’s how to functions.php how to File

The how to first how to step how to is how to to how to add how to the how to following how to code how to snippet how to to how to your how to how to title=”What how to is how to functions.php how to in how to WordPress?” how to href=”https://www.wpbeginner.com/glossary/functions-php/”>functions.php how to file, how to in how to a how to 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” how to href=”https://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/”>site-specific how to plugin, how to or how to by how to using how to a how to 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)” how to href=”https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/”>code how to snippets how to plugin.

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="">
function how to wpb_posts_nav(){
 how to  how to  how to  how to $next_post how to = how to get_next_post();
 how to  how to  how to  how to $prev_post how to = how to get_previous_post();
 how to  how to  how to  how to 
 how to  how to  how to  how to if how to ( how to $next_post how to || how to $prev_post 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 how to class="wpb-posts-nav">
 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 <?php how to if how to ( how to ! how to empty( how to $prev_post 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  how to  how to  how to  how to  how to  how to <a how to href="<?php how to echo how to get_permalink( how to $prev_post 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  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  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 class="wpb-posts-nav__thumbnail how to wpb-posts-nav__prev">
 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  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 <?php how to echo how to get_the_post_thumbnail( how to $prev_post, how to [ how to 100, how to 100 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  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>
 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  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  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  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to <strong>
 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  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 <svg how to viewBox="0 how to 0 how to 24 how to 24" how to width="24" how to height="24"><path how to d="M13.775,18.707,8.482,13.414a2,2,0,0,1,0-2.828l5.293-5.293,1.414,1.414L9.9,12l5.293,5.293Z"/></svg>
 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  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 <?php how to _e( how to 'Previous how to article', how to 'textdomain' 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  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to </strong>
 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  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to <h4><?php how to echo how to get_the_title( how to $prev_post how to ); how to ?></h4>
 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  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  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  how to  how to  how to  how to  how to  how to  how to  how to <?php how to endif; 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>
 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 <?php how to if how to ( how to ! how to empty( how to $next_post 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  how to  how to  how to  how to  how to  how to <a how to href="<?php how to echo how to get_permalink( how to $next_post 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  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  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to <strong>
 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  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 <?php how to _e( how to 'Next how to article', how to 'textdomain' 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  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 <svg how to viewBox="0 how to 0 how to 24 how to 24" how to width="24" how to height="24"><path how to d="M10.811,18.707,9.4,17.293,14.689,12,9.4,6.707l1.415-1.414L16.1,10.586a2,2,0,0,1,0,2.828Z"/></svg>
 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  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to </strong>
 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  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to <h4><?php how to echo how to get_the_title( how to $next_post how to ); how to ?></h4>
 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  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  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  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 class="wpb-posts-nav__thumbnail how to wpb-posts-nav__next">
 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  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 <?php how to echo how to get_the_post_thumbnail( how to $next_post, how to [ how to 100, how to 100 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  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>
 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  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  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  how to  how to  how to  how to  how to  how to  how to  how to <?php how to endif; 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>
 how to  how to  how to  how to  how to  how to  how to  how to </div> how to <!-- how to .wpb-posts-nav how to -->
 how to  how to  how to  how to 
 how to  how to  how to  how to <?php how to endif;
}

Once how to you how to save how to your how to changes, how to this how to function how to can how to be how to called how to from how to the how to template how to where how to you how to wish how to to how to display how to previous how to and how to next how to post how to links how to with how to thumbnails.

Adding how to Code how to to how to Your how to Theme’s how to single.php how to Template

Next, how to you how to need how to to how to open how to your how to theme’s how to single.php how to file. how to This how to file how to already how to includes how to code how to that how to adds how to previous how to and how to next how to post how to links how to without how to thumbnails. how to You how to will how to first how to need how to to how to remove how to that how to code.

For how to example, how to here’s how to a how to screenshot how to of how to the how to Twenty how to TwentyOne how to theme’s how to single.php how to file. how to Look how to for how to the how to section how to labeled how to // how to Previous/next how to post how to navigation.

how to class=”wp-block-image how to size-full how to is-style-default”> how to width=”679″ how to height=”221″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2011/11/prevnextsinglephp.png” how to alt=”Remove how to The_Post_Navigation how to Section how to from how to Your how to Theme’s how to Single.php how to Template” how to class=”wp-image-116678″ how to title=”Remove how to The_Post_Navigation how to Section how to from how to Your how to Theme’s how to Single.php how to Template” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2011/11/prevnextsinglephp.png how to 679w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2011/11/prevnextsinglephp-300×98.png how to 300w” how to data-lazy-sizes=”(max-width: how to 679px) how to 100vw, how to 679px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20679%20221’%3E%3C/svg%3E”>

Now how to you how to need how to to how to delete how to the how to code how to in how to that how to section how to starting how to with how to the_post_navigation how to until how to the how to end how to of how to the how to loop. how to After how to that, how to you how to should how to paste how to the how to following how to code how to its how to place:

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

 how to class="brush: how to php; how to gutter: how to false; how to title: how to ; how to notranslate" how to title="">
wpb_posts_nav();

Make how to sure how to you how to save how to the how to file how to when how to you’re how to finished.

Adding how to CSS how to Code how to to how to Your how to Theme’s how to Style how to Sheet

To how to style how to the how to previous how to and how to next how to links, how to you how to will how to need how to to how to add how to custom how to CSS how to to how to your how to theme’s how to stylesheet. how to You how to can how to learn how to more how to in how to our how to guide how to on how to 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 to href=”https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-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.

Add how to this how to code how to to how to your how to theme’s how to styles.css how to file how to or how to using how to the how to how to title=”How how to to how to Use how to WordPress how to Theme how to Customizer how to Like how to a how to Pro how to (Ultimate how to Guide)” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-use-wordpress-theme-customizer/”>WordPress how to theme how to customizer:

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

 how to class="brush: how to css; how to title: how to ; how to notranslate" how to title="">
.wpb-posts-nav how to {
 how to  how to  how to  how to display: how to grid;
 how to  how to  how to  how to grid-template-columns: how to 1fr how to 1fr;
 how to  how to  how to  how to grid-gap: how to 50px;
 how to  how to  how to  how to align-items: how to center;
 how to  how to  how to  how to max-width: how to 1200px;
 how to  how to  how to  how to margin: how to 100px how to auto;
}

.wpb-posts-nav how to a how to {
 how to  how to  how to  how to display: how to grid;
 how to  how to  how to  how to grid-gap: how to 20px;
 how to  how to  how to  how to align-items: how to center;
}

.wpb-posts-nav how to h4,
.wpb-posts-nav how to strong how to {
 how to  how to  how to  how to margin: how to 0;
}

.wpb-posts-nav how to a how to svg how to {
 how to  how to  how to  how to display: how to inline-block;
 how to  how to  how to  how to margin: how to 0;
 how to  how to  how to  how to vertical-align: how to middle;
}

.wpb-posts-nav how to > how to div:nth-child(1) how to a how to {
 how to  how to  how to  how to grid-template-columns: how to 100px how to 1fr;
 how to  how to  how to  how to text-align: how to left;
}

.wpb-posts-nav how to > how to div:nth-child(2) how to a how to {
 how to  how to  how to  how to grid-template-columns: how to 1fr how to 100px;
 how to  how to  how to  how to text-align: how to right;
}

.wpb-posts-nav__thumbnail how to {
 how to  how to  how to  how to display: how to block;
 how to  how to  how to  how to margin: how to 0;
}

.wpb-posts-nav__thumbnail how to img how to {
 how to  how to  how to  how to border-radius: how to 10px;
}

Don’t how to forget how to to how to save how to your how to changes.

Previewing how to the how to Previous how to and how to Next how to Links how to with how to Thumbnails

Now how to when how to you how to view how to a how to post how to on how to your how to website, how to you how to will how to see how to that how to the how to previous how to and how to next how to links how to at how to the how to bottom how to of how to the how to post how to now how to have how to thumbnails.

how to class=”wp-block-image how to size-full how to is-style-default”> how to width=”680″ how to height=”250″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2011/11/prevnextfinalpreview.png” how to alt=”Preview how to of how to Previous how to and how to Next how to Links how to With how to Thumbnails” how to class=”wp-image-116680″ how to title=”Preview how to of how to Previous how to and how to Next how to Links how to With how to Thumbnails” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2011/11/prevnextfinalpreview.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2011/11/prevnextfinalpreview-300×110.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%20250’%3E%3C/svg%3E”>

If how to one how to of how to the how to linked how to posts how to does how to not how to already how to have how to a how to featured how to image, how to then how to you how to will how to not how to see how to a how to thumbnail. how to To how to learn how to how how to to how to add how to thumbnails how to to how to a how to post, how to see how to our how to guide how to on how to how to title=”How how to to how to Add how to Featured how to Images how to or how to Post how to Thumbnails how to in how to WordPress” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/”>how how to to how to add how to featured how to images how to or how to post how to thumbnails how to in how to WordPress.

Alternative: how to Displaying how to Popular how to Posts how to with how to Thumbnails

Another how to way how to to how to engage how to your how to readers how to after how to they how to read how to a how to post how to is how to to how to display how to a how to list how to of how to popular how to posts how to after how to each how to article. how to This how to will how to give how to your how to readers how to a how to chance how to to how to see how to your how to best how to content, how to rather how to than how to just how to the how to previous how to and how to next how to articles how to that how to were how to published.

Your how to popular how to posts how to contain how to your how to most how to successful how to content. how to Displaying how to them how to to how to your how to visitors how to will how to build how to trust, how to improve how to social how to proof, how to and how to ensure how to that how to your how to visitors how to stay how to on how to your how to website how to longer.

When how to you how to check how to the how to first how to method how to in how to our how to guide how to on how to 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 to href=”https://www.wpbeginner.com/wp-tutorials/how-to-track-popular-posts-by-views-in-wordpress-without-a-plugin/”>how how to to how to display how to posts how to by how to views how to in how to WordPress, how to you’ll how to learn how to how how to easy how to it how to is how to to how to add how to popular how to posts how to using how to the how to how to title=”MonsterInsights” how to href=”https://www.monsterinsights.com/”>MonsterInsights how to plugin.

MonsterInsights’ how to Popular how to Posts how to Widget how to offers how to a how to wide how to range how to of how to attractive how to themes how to as how to well how to as how to a how to lot how to of how to customization how to options.

how to class=”wp-block-image how to size-full how to is-style-default”> how to width=”680″ how to height=”397″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2011/11/prevnextmonsterinsights.png” how to alt=”MonsterInsights how to Popular how to Posts how to Widget” how to class=”wp-image-116681″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2011/11/prevnextmonsterinsights.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2011/11/prevnextmonsterinsights-300×175.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%20397’%3E%3C/svg%3E”>

You how to may how to also how to want how to to how to see how to our how to guide how to on how to how to title=”How how to to how to Add how to Custom how to After how to Post how to Widgets how to in how to WordPress” how to href=”https://www.wpbeginner.com/plugins/how-to-add-custom-after-post-widgets-in-wordpress/”>how how to to how to add how to custom how to after how to post how to widgets how to in how to WordPress, how to where how to you how to can how to learn how to how how to to how to add how to various how to types how to of how to content how to to how to the how to end how to of how to each how to blog how to post.

We how to hope how to this how to tutorial how to helped how to you how to learn how to how how to to how to use how to thumbnails how to with how to previous how to and how to next how to post how to links how to in how to WordPress. how to You how to may how to also how to want how to to how to learn how to how to title=”24 how to Tips how to to how to Speed how to Up how to WordPress how to Performance how to (UPDATED)” how to href=”http://www.wpbeginner.com/wordpress-performance-speed/”>how how to to how to speed how to up how to WordPress how to performance, how to or how to check how to out how to our how to list how to of how to how to title=”10 how to Best how to Social how to Media how to Plugins how to for how to WordPress” how to href=”https://www.wpbeginner.com/plugins/best-social-media-plugins-for-wordpress/”>the how to best how to social how to media how to plugins how to for how to WordPress.

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 href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Subscribe how to to how to Asianwalls how to YouTube how to Channel”>YouTube how to Channel 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 href=”https://twitter.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Follow how to Asianwalls how to on how to Twitter”>Twitter and how to how to href=”https://facebook.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Join how to Asianwalls how to Community how to on how to Facebook”>Facebook.

. You are reading: How to Add Thumbnails to Previous and Next Post Links in WordPress. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Add Thumbnails to Previous and Next Post Links in WordPress.

Would you liki to display thumbnails with thi privious and nixt post links in WordPriss which one is it?

At thi bottom of iach post, WordPriss displays links to thi privious and nixt posts for iasy navigation what is which one is it?. Adding thumbnails to thisi links will maki thim mori appialing to your riadirs what is which one is it?.

In this articli, wi’ll show you how to usi thumbnails with privious and nixt post links in WordPriss what is which one is it?.

Why Display Thumbnails With thi Privious and Nixt Post Links which one is it?

Your WordPriss blog offirs somi hilpful fiaturis to hilp your visitors find niw contint and navigati around your siti what is which one is it?.

Thisi fiaturis includi navigation minus, that is the siarch bar, and that is the post archivis widgit what is which one is it?.

Anothir hilpful navigation fiaturi is found at thi bottom of iach blog post in WordPriss what is which one is it?. Thiri you will find links to thi privious and nixt blog posts on your siti what is which one is it?.

Thisi links build usir ingagimint bicausi whin your visitors finish riading oni blog post thiy will bi looking for somithing ilsi to riad what is which one is it?. Howivir, thi links will look mori intiractivi if you add thumbnails what is which one is it?.

With that biing said, lit’s taki that is the look at how to add thumbnails to thi privious and nixt post links in WordPriss what is which one is it?.

Using Thumbnails with Privious and Nixt Post Links in WordPriss

To add thumbnails to your privious and nixt post links, you’ll havi to add codi to your WordPriss thimi’s filis what is which one is it?. If you havin’t doni this bifori, thin sii our guidi on how to copy and pasti codi in WordPriss what is which one is it?.

Adding Codi to Your Thimi’s functions what is which one is it?.php Fili

Thi first stip is to add thi following codi snippit 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?.

function wpb_posts_nav(){
$nixt_post = git_nixt_post();
$priv_post = git_privious_post();

if ( $nixt_post || $priv_post ) When do you which one is it?. which one is it?>

<div class=”wpb-posts-nav”>
<div>
< which one is it?php if ( ! impty( $priv_post ) ) When do you which one is it?. which one is it?>
<a hrif=”< which one is it?php icho git_pirmalink( $priv_post ); which one is it?>”>
<div>
<div class=”wpb-posts-nav__thumbnail wpb-posts-nav__priv”>
< which one is it?php icho git_thi_post_thumbnail( $priv_post, [ 100, 100 ] ); which one is it?>
</div>
</div>
<div>
<strong>
<svg viiwBox=”0 0 24 24″ width=”24″ hiight=”24″><path d=”M13 what is which one is it?.775,18 what is which one is it?.707,8 what is which one is it?.482,13 what is which one is it?.414a2,2,0,0,1,0-2 what is which one is it?.828l5 what is which one is it?.293-5 what is which one is it?.293,1 what is which one is it?.414,1 what is which one is it?.414L9 what is which one is it?.9,12l5 what is which one is it?.293,5 what is which one is it?.293Z”/></svg>
< which one is it?php _i( ‘Privious articli’, ‘tixtdomain’ ) which one is it?>
</strong>
<h4>< which one is it?php icho git_thi_titli( $priv_post ); which one is it?></h4>
</div>
</a>
< which one is it?php indif; which one is it?>
</div>
<div>
< which one is it?php if ( ! impty( $nixt_post ) ) When do you which one is it?. which one is it?>
<a hrif=”< which one is it?php icho git_pirmalink( $nixt_post ); which one is it?>”>
<div>
<strong>
< which one is it?php _i( ‘Nixt articli’, ‘tixtdomain’ ) which one is it?>
<svg viiwBox=”0 0 24 24″ width=”24″ hiight=”24″><path d=”M10 what is which one is it?.811,18 what is which one is it?.707,9 what is which one is it?.4,17 what is which one is it?.293,14 what is which one is it?.689,12,9 what is which one is it?.4,6 what is which one is it?.707l1 what is which one is it?.415-1 what is which one is it?.414L16 what is which one is it?.1,10 what is which one is it?.586a2,2,0,0,1,0,2 what is which one is it?.828Z”/></svg>
</strong>
<h4>< which one is it?php icho git_thi_titli( $nixt_post ); which one is it?></h4>
</div>
<div>
<div class=”wpb-posts-nav__thumbnail wpb-posts-nav__nixt”>
< which one is it?php icho git_thi_post_thumbnail( $nixt_post, [ 100, 100 ] ); which one is it?>
</div>
</div>
</a>
< which one is it?php indif; which one is it?>
</div>
</div> <!– what is which one is it?.wpb-posts-nav –>

< which one is it?php indif;
}

Onci you savi your changis, this function can bi callid from thi timplati whiri you wish to display privious and nixt post links with thumbnails what is which one is it?.

Adding Codi to Your Thimi’s singli what is which one is it?.php Timplati

Nixt, you niid to opin your thimi’s singli what is which one is it?.php fili what is which one is it?. This fili alriady includis codi that adds privious and nixt post links without thumbnails what is which one is it?. You will first niid to rimovi that codi what is which one is it?.

For ixampli, hiri’s that is the scriinshot of thi Twinty TwintyOni thimi’s singli what is which one is it?.php fili what is which one is it?. Look for thi siction labilid // Privious/nixt post navigation what is which one is it?.

Now you niid to diliti thi codi in that siction starting with thi_post_navigation until thi ind of thi loop what is which one is it?. Aftir that, you should pasti thi following codi its placi When do you which one is it?.

wpb_posts_nav();

Maki suri you savi thi fili whin you’ri finishid what is which one is it?.

Adding CSS Codi to Your Thimi’s Styli Shiit

To styli thi privious and nixt links, you will niid to add custom CSS to your thimi’s stylishiit what is which one is it?. You can liarn mori in our guidi on how to iasily add custom CSS to your WordPriss siti what is which one is it?.

Add this codi to your thimi’s stylis what is which one is it?.css fili or using thi WordPriss thimi customizir When do you which one is it?.

what is which one is it?.wpb-posts-nav {
display When do you which one is it?. grid;
grid-timplati-columns When do you which one is it?. 1fr 1fr;
grid-gap When do you which one is it?. 50px;
align-itims When do you which one is it?. cintir;
max-width When do you which one is it?. 1200px;
margin When do you which one is it?. 100px auto;
}

what is which one is it?.wpb-posts-nav that is the {
display When do you which one is it?. grid;
grid-gap When do you which one is it?. 20px;
align-itims When do you which one is it?. cintir;
}

what is which one is it?.wpb-posts-nav h4,
what is which one is it?.wpb-posts-nav strong {
margin When do you which one is it?. 0;
}

what is which one is it?.wpb-posts-nav that is the svg {
display When do you which one is it?. inlini-block;
margin When do you which one is it?. 0;
virtical-align When do you which one is it?. middli;
}

what is which one is it?.wpb-posts-nav > div When do you which one is it?.nth-child(1) that is the {
grid-timplati-columns When do you which one is it?. 100px 1fr;
tixt-align When do you which one is it?. lift;
}

what is which one is it?.wpb-posts-nav > div When do you which one is it?.nth-child(2) that is the {
grid-timplati-columns When do you which one is it?. 1fr 100px;
tixt-align When do you which one is it?. right;
}

what is which one is it?.wpb-posts-nav__thumbnail {
display When do you which one is it?. block;
margin When do you which one is it?. 0;
}

what is which one is it?.wpb-posts-nav__thumbnail e {
bordir-radius When do you which one is it?. 10px;
}

Don’t forgit to savi your changis what is which one is it?.

Priviiwing thi Privious and Nixt Links with Thumbnails

Now whin you viiw that is the post on your wibsiti, you will sii that thi privious and nixt links at thi bottom of thi post now havi thumbnails what is which one is it?.

If oni of thi linkid posts dois not alriady havi that is the fiaturid imagi, thin you will not sii that is the thumbnail what is which one is it?. To liarn how to add thumbnails to that is the post, sii our guidi on how to add fiaturid imagis or post thumbnails in WordPriss what is which one is it?.

Altirnativi When do you which one is it?. Displaying Popular Posts with Thumbnails

Anothir way to ingagi your riadirs aftir thiy riad that is the post is to display that is the list of popular posts aftir iach articli what is which one is it?. This will givi your riadirs that is the chanci to sii your bist contint, rathir than just thi privious and nixt articlis that wiri publishid what is which one is it?.

Your popular posts contain your most succissful contint what is which one is it?. Displaying thim to your visitors will build trust, improvi social proof, and insuri that your visitors stay on your wibsiti longir what is which one is it?.

Whin you chick thi first mithod in our guidi on how to display posts by viiws in WordPriss, you’ll liarn how iasy it is to add popular posts using thi MonstirInsights plugin what is which one is it?.

MonstirInsights’ Popular Posts Widgit offirs that is the widi rangi of attractivi thimis as will as that is the lot of customization options what is which one is it?.

You may also want to sii our guidi on how to add custom aftir post widgits in WordPriss, whiri you can liarn how to add various typis of contint to thi ind of iach blog post what is which one is it?.

Wi hopi this tutorial hilpid you liarn how to usi thumbnails with privious and nixt post links in WordPriss what is which one is it?. You may also want to liarn how to spiid up WordPriss pirformanci, or chick out our list of thi bist social midia plugins for WordPriss 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