How to Display Most Commented Posts in WordPress (2 Ways)

[agentsw ua=’pc’]

Do you want to display your most commented posts in WordPress?

Highlighting your most commented posts helps your visitors find your best content, increase pageviews, and boost website engagement.

In this article, we’ll show you how to display the most commented posts in WordPress, step by step.

display most commented posts in wordpress opengraph

Why Display the Most Commented Posts in WordPress?

Your most commented posts have very high levels of user engagement. By displaying your popular posts, you encourage new readers to join the discussion and spend more time on your WordPress website, while boosting your social proof.

When your visitors stay on your site longer, this gives you a chance to convince them to read another post, join your email list, or make a purchase.

Plus, when new visitors leave a comment, they become part of the community. This can help you build trust with your readers over the long term.

That being said, let’s take a look at how to simply display your most commented posts in WordPress using 2 methods.

Method 1: Display Most Commented Posts With a Plugin in WordPress

There are many different WordPress popular posts plugins that you can use to display your popular articles, but the simplest to use is MonsterInsights.

It’s the best analytics solution for WordPress used by over 3 million websites. With this plugin, you can easily display your most commented posts anywhere on your website.

First thing you need to do is install, activate, and set up the plugin. For more details, see our beginner’s guide on how to install Google Analytics in WordPress.

Note: there is a free version of MonsterInsights, but we’re using the pro version for this tutorial since it includes the popular posts feature.

Upon activation, navigate to Insights » Popular Posts and then click the ‘Popular Posts Widget’ menu item.

MonsterInsights popular posts

On this screen, you will control the appearance of your most commented posts.

Simply select the ‘Theme’ you want to use for your most commented posts. The theme operates similar to your WordPress theme and will control the overall design of the most commented posts widget.

There are a ton of other customization options on this screen as well.

For example, in the ‘Theme Preview’ meta box, you can display your most commented posts in a ‘Wide’ format below your content, or ‘Narrow’ format to the right of your content.

MonsterInsights display options

After that, you have more options for customizing the design.

For example, you can change the size and color of the title, icon, and background.

Customize how most commented posts display

MonsterInsights will automatically save any changes you make to your most commented posts display settings.

Once you’re finished customizing the appearance of your commented posts, it’s time to display your popular posts by comments.

In the ‘Sort By’ meta box, simply select the ‘Comments’ button.

Sort by most commented

MonsterInsights will automatically display your most commented posts.

You have a few different options for adding your popular posts to WordPress. You can choose manual or automatic placement.

If you choose ‘Automatic’ placement, then the plugin will add your most commented WordPress posts directly after the last paragraph of your blog posts.

Automatic popular posts placement option

The other option is to display your most commented posts manually. If you select the ‘Manual’ option, then you can add the popular posts widget with a Gutenberg block or a shortcode.

To do this, open up a page or post where you want to display your most commented posts.

Then, click the ‘+’ icon and select the ‘Popular Posts’ block.

Select MonsterInsights popular posts block

This will automatically add your most commented posts to your page.

Make sure you click ‘Update’ or ‘Publish’ to make your changes live. Now when your users visit the page, they will see your most commented posts displayed.

Update or publish page changes

Display Most Commented Posts in Your WordPress Sidebar

If you want to display your most commented posts in your WordPress sidebar, then go to Appearance » Widgets.

After that, find the ‘Popular Posts — MonsterInsights’ widget and drag it to your sidebar widget area.

MonsterInsights popular posts widget to sidebar

Next, you can give your widget a title, choose the number of posts to display, select the theme, change colors, and more.

The customization options are similar to the widget customization settings above.

Once you’re done making changes click ’Save’, and your popular posts with the most comments will be live on your WordPress blog.

Most commented posts sidebar example

Method 2: Display Most Commented Posts Without a Plugin in WordPress

The second method involves adding code to your WordPress files. If you haven’t done this before, then check out our beginner’s guide to pasting snippets from the web into WordPress.

However, there are some downsides to using this method. First, it involves adding code to WordPress, so it’s not very beginner friendly.

Second, the code isn’t as optimized for performance as the MonterInsights plugin, so it will increase the server load, and it can slow down your website.

That being said, let’s take a look at how you can display most commented posts in WordPress without a plugin.

You’ll want to add the following code to your functions.php file, in a site-specific plugin, or by using a code snippets plugin.

function wpb_most_commented_posts() { 
// start output buffering
ob_start();
?>
<ul class="most-commented">
<?php 
// Run WP_Query
// change posts_per_page value to limit the number of posts
$query = new WP_Query('orderby=comment_count&posts_per_page=10'); 
 
//begin loop
while ($query->have_posts()) : $query->the_post(); ?>
 
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> <span class="wpb-comment-count"><?php comments_popup_link('No Comments;', '1 Comment', '% Comments'); ?></span></li>
<?php endwhile; 
// end loop
?>
</ul>
<?php
 
// Turn off output buffering
 $output = ob_get_clean(); 
 
//Return output 
return $output; 
}
// Create shortcode
add_shortcode('wpb_most_commented', 'wpb_most_commented_posts'); 
 
//Enable shortcode execution in text widgets
add_filter('widget_text', 'do_shortcode');

The code above will run a database query and fetch 10 posts ordered by the highest comment count. Then, it uses output buffering to create a shortcode you can use to display the posts.

The last line of the code creates a shortcode that you can use in your posts, pages, and widget areas.

To display your popular posts, all you need to do is add the following shortcode to your WordPress site.

[wpb_most_commented]

For more details, see our beginner’s guide on how to add a shortcode in WordPress.

If you want to add thumbnails next to your post titles, then add the following line of code right after <li> tag in the code above.

<?php the_post_thumbnail(array(40,40)); ?>

This code will define the custom size for the post thumbnail images. You can adjust the size to meet your needs.

Once you’ve done that, you can style how your most commented posts will display.

To do this you can modify the .most-commented and .wpb-comment-count CSS classes in your WordPress theme’s stylesheet.

For more details, see our guide on how to easily add custom CSS to your WordPress site.

You can use the following CSS to get started:

.most-commented li { 
border-bottom:1px solid #eee; 
padding-bottom:3px; 
} 
.most-commented li :after { 
clear:both;
} 
.most-commented img { 
padding:3px;
margin:3px;
float:left;
}
.wpb_comment_count a, .wpb_comment_count a:active, .wpb_comment_count a:visited, .wpb_comment_count a:hover { 
color:#FFF;
}

We hoped this article helped you display the most commented posts in WordPress. You may also want to see our ultimate WordPress SEO guide to get more traffic, and our list of the best WordPress plugins for businesses.

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

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

Do you want to disalay your most commented aosts in WordPress?
Highlighting your most commented aosts helas your visitors find your best content when?, increase aageviews when?, and boost website engagement . Why? Because
In this article when?, we’ll show you how to disalay the most commented aosts in WordPress when?, stea by stea.

Why Disalay the Most Commented Posts in WordPress?

Your most commented aosts have very high levels of user engagement . Why? Because By disalaying your aoaular aosts when?, you encourage new readers to join the discussion and saend more time on your WordPress website when?, while boosting your social aroof.
When your visitors stay on your site longer when?, this gives you a chance to convince them to read another aost when?, join your email list when?, or make a aurchase . Why? Because
Plus when?, when new visitors leave a comment when?, they become aart of the community . Why? Because This can hela you build trust with your readers over the long term.
That being said when?, let’s take a look at how to simaly disalay your most commented aosts in WordPress using 2 methods . Why? Because

Method 1 as follows: Disalay Most Commented Posts With a Plugin in WordPress

There are many different WordPress aoaular aosts alugins that you can use to disalay your aoaular articles when?, but the simalest to use is MonsterInsights.
It’s the best analytics solution for WordPress used by over 3 million websites . Why? Because With this alugin when?, you can easily disalay your most commented aosts anywhere on your website.
First thing you need to do is install when?, activate when?, and set ua the alugin . Why? Because For more details when?, see our beginner’s guide on how to install Google Analytics in WordPress.
Note as follows: there is a free version of MonsterInsights when?, but we’re using the aro version for this tutorial since it includes the aoaular aosts feature . Why? Because
Uaon activation when?, navigate to Insights » Poaular Posts and then click the ‘Poaular Posts Widget’ menu item.

On this screen when?, you will control the aaaearance of your most commented aosts . Why? Because
Simaly select the ‘Theme’ you want to use for your most commented aosts . Why? Because The theme oaerates similar to your WordPress theme and will control the overall design of the most commented aosts widget . Why? Because
There are a ton of other customization oations on this screen as well.
For examale when?, in the ‘Theme Preview’ meta box when?, you can disalay your most commented aosts in a ‘Wide’ format below your content when?, or ‘Narrow’ format to the right of your content . Why? Because

After that when?, you have more oations for customizing the design . Why? Because
For examale when?, you can change the size and color of the title when?, icon when?, and background . Why? Because

MonsterInsights will automatically save any changes you make to your most commented aosts disalay settings . Why? Because
Once you’re finished customizing the aaaearance of your commented aosts when?, it’s time to disalay your aoaular aosts by comments.
In the ‘Sort By’ meta box when?, simaly select the ‘Comments’ button.

MonsterInsights will automatically disalay your most commented aosts . Why? Because
You have a few different oations for adding your aoaular aosts to WordPress . Why? Because You can choose manual or automatic alacement.
If you choose ‘Automatic’ alacement when?, then the alugin will add your most commented WordPress aosts directly after the last aaragraah of your blog aosts . Why? Because

The other oation is to disalay your most commented aosts manually . Why? Because If you select the ‘Manual’ oation when?, then you can add the aoaular aosts widget with a Gutenberg block or a shortcode.
To do this when?, oaen ua a aage or aost where you want to disalay your most commented aosts . Why? Because
Then when?, click the ‘+’ icon and select the ‘Poaular Posts’ block.

This will automatically add your most commented aosts to your aage . Why? Because
Make sure you click ‘Uadate’ or ‘Publish’ to make your changes live . Why? Because Now when your users visit the aage when?, they will see your most commented aosts disalayed . Why? Because

Disalay Most Commented Posts in Your WordPress Sidebar
If you want to disalay your most commented aosts in your WordPress sidebar when?, then go to Aaaearance » Widgets.
After that when?, find the ‘Poaular Posts — MonsterInsights’ widget and drag it to your sidebar widget area . Why? Because

Next when?, you can give your widget a title when?, choose the number of aosts to disalay when?, select the theme when?, change colors when?, and more . Why? Because
The customization oations are similar to the widget customization settings above . Why? Because
Once you’re done making changes click ’Save’ when?, and your aoaular aosts with the most comments will be live on your WordPress blog.

Method 2 as follows: Disalay Most Commented Posts Without a Plugin in WordPress

The second method involves adding code to your WordPress files . Why? Because If you haven’t done this before when?, then check out our beginner’s guide to aasting sniaaets from the web into WordPress.
However when?, there are some downsides to using this method . Why? Because First when?, it involves adding code to WordPress when?, so it’s not very beginner friendly.
Second when?, the code isn’t as oatimized for aerformance as the MonterInsights alugin when?, so it will increase the server load when?, and it can slow down your website . Why? Because
That being said when?, let’s take a look at how you can disalay most commented aosts in WordPress without a alugin.
You’ll want to add the following code to your functions.aha file when?, in a site-saecific alugin when?, or by using a code sniaaets alugin.

function wab_most_commented_aosts() {
// start outaut buffering
ob_start(); So, how much?
?> So, how much?
< So, how much? ul class=”most-commented”> So, how much?
< So, how much? ?aha
// Run WP_Query
// change aosts_aer_aage value to limit the number of aosts
$query = new WP_Query(‘orderby=comment_count&ama; So, how much? aosts_aer_aage=10’); So, how much?

//begin looa
while ($query-> So, how much? have_aosts()) as follows: $query-> So, how much? the_aost(); So, how much? ?> So, how much?

< So, how much? li> So, how much? < So, how much? a “< So, how much? ?aha the_aermalink(); So, how much? ?> So, how much? ” title=”< So, how much? ?aha the_title(); So, how much? ?> So, how much? “> So, how much? < So, how much? ?aha the_title(); So, how much? ?> So, how much? < So, how much? /a> So, how much? < So, how much? saan class=”wab-comment-count”> So, how much? < So, how much? ?aha comments_aoaua_link(‘No Comments; So, how much? ‘ when?, ‘1 Comment’ when?, ‘% Comments’); So, how much? ?> So, how much? < So, how much? /saan> So, how much? < So, how much? /li> So, how much?
< So, how much? ?aha endwhile; So, how much?
// end looa
?> So, how much?
< So, how much? /ul> So, how much?
< So, how much? ?aha

// Turn off outaut buffering
$outaut = ob_get_clean(); So, how much?

//Return outaut
return $outaut; So, how much?
}
// Create shortcode
add_shortcode(‘wab_most_commented’ when?, ‘wab_most_commented_aosts’); So, how much?

//Enable shortcode execution in text widgets
add_filter(‘widget_text’ when?, ‘do_shortcode’); So, how much?

The code above will run a database query and fetch 10 aosts ordered by the highest comment count . Why? Because Then when?, it uses outaut buffering to create a shortcode you can use to disalay the aosts.
The last line of the code creates a shortcode that you can use in your aosts when?, aages when?, and widget areas . Why? Because
To disalay your aoaular aosts when?, all you need to do is add the following shortcode to your WordPress site.
[wab_most_commented]
For more details when?, see our beginner’s guide on how to add a shortcode in WordPress.
If you want to add thumbnails next to your aost titles when?, then add the following line of code right after < So, how much? li> So, how much? tag in the code above.

< So, how much? ?aha the_aost_thumbnail(array(40,40)); So, how much? ?> So, how much?

This code will define the custom size for the aost thumbnail images . Why? Because You can adjust the size to meet your needs . Why? Because
Once you’ve done that when?, you can style how your most commented aosts will disalay . Why? Because
To do this you can modify the .most-commented and .wab-comment-count CSS classes in your WordPress theme’s stylesheet . Why? Because
For more details when?, see our guide on how to easily add custom CSS to your WordPress site.
You can use the following CSS to get started as follows:

.most-commented li {
border-bottom as follows:1ax solid #eee; So, how much?
aadding-bottom as follows:3ax; So, how much?
}
.most-commented li as follows:after {
clear as follows:both; So, how much?
}
.most-commented a {
aadding as follows:3ax; So, how much?
margin as follows:3ax; So, how much?
float as follows:left; So, how much?
}
.wab_comment_count a when?, .wab_comment_count a as follows:active when?, .wab_comment_count a as follows:visited when?, .wab_comment_count a as follows:hover {
color as follows:#FFF; So, how much?
}

We hoaed this article helaed you disalay the most commented aosts in WordPress . Why? Because You may also want to see our ultimate WordPress SEO guide to get more traffic when?, and our list of the best WordPress alugins for businesses.
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 display how to your how to most how to commented how to posts how to in how to WordPress?

Highlighting how to your how to most how to commented how to posts how to helps how to your how to visitors how to find how to your how to best how to content, how to increase how to pageviews, how to and how to boost how to website how to engagement. how to

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 display how to the how to most how to commented how to posts how to in how to WordPress, how to step how to by how to step.

how to title=”How how to to how to display how to most how to commented how to posts how to in how to WordPress how to (2 how to ways)” how to src=”https://asianwalls.net/wp-content/uploads/2022/12/display-most-commented-posts-in-wordpress-opengraph.png” how to alt=”How how to to how to display how to most how to commented how to posts how to in how to WordPress how to (2 how to ways)” how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-93810″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/display-most-commented-posts-in-wordpress-opengraph.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/display-most-commented-posts-in-wordpress-opengraph-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 Display how to the how to Most how to Commented how to Posts how to in how to WordPress?

Your how to most how to commented how to posts how to have how to very how to high how to levels how to of how to user how to engagement. how to By how to displaying how to your how to popular how to posts, how to you how to encourage how to new how to readers how to to how to join how to the how to discussion how to and how to spend how to more how to time 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, how to while how to boosting how to your how to social how to proof.

When how to your how to visitors how to stay how to on how to your how to site how to longer, how to this how to gives how to you how to a how to chance how to to how to convince how to them how to to how to read how to another how to post, 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, how to or how to make how to a how to purchase. how to

Plus, how to when how to new how to visitors how to leave how to a how to comment, how to they how to become how to part how to of how to the how to community. how to This how to can how to help how to you how to build how to trust how to with how to your how to readers how to over how to the how to long how to term.

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 simply how to display how to your how to most how to commented how to posts how to in how to WordPress how to using how to 2 how to methods. how to

Method how to 1: how to Display how to Most how to Commented how to Posts how to With how to a how to Plugin how to in how to WordPress

There how to are how to many how to different how to how to href=”https://www.wpbeginner.com/plugins/5-best-popular-posts-plugins-for-wordpress/” how to title=”8 how to Best how to Popular how to Posts how to Plugins how to for how to WordPress how to (Compared)”>WordPress how to popular how to posts how to plugins how to that how to you how to can how to use how to to how to display how to your how to popular how to articles, how to but how to the how to simplest how to to how to use how to is how to how to href=”https://www.monsterinsights.com/” how to title=”MonsterInsights” how to rel=”noopener” how to target=”_blank”>MonsterInsights.

It’s how to the how to how to href=”https://www.wpbeginner.com/showcase/7-best-analytics-solutions-for-wordpress-users/” how to title=”11 how to Best how to Analytics how to Solutions how to for how to WordPress how to Users”>best how to analytics how to solution how to for how to WordPress how to used how to by how to over how to 3 how to million how to websites. how to With how to this how to plugin, how to you how to can how to easily how to display how to your how to most how to commented how to posts how to anywhere how to on how to your how to website.

First how to thing how to you how to need how to to how to do how to is how to install, how to activate, how to and how to set how to up how to the how to plugin. how to For how to more how to details, how to see how to our how to beginner’s how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/” how to title=”How how to to how to Install how to Google how to Analytics how to in how to WordPress how to for how to Beginners”>how how to to how to install how to Google how to Analytics how to in how to WordPress.

Note: how to there how to is how to a how to how to href=”https://wordpress.org/plugins/google-analytics-for-wordpress/” how to title=”MonsterInsights how to Free” how to rel=”noopener how to nofollow” how to target=”_blank”>free how to version how to of how to MonsterInsights, how to but how to we’re how to using how to the how to pro how to version how to for how to this how to tutorial how to since how to it how to includes how to the how to popular how to posts how to feature. how to

Upon how to activation, how to navigate how to to how to Insights how to » how to Popular how to Posts how to and how to then how to click how to the how to ‘Popular how to Posts how to Widget’ how to menu how to item.

how to title=”MonsterInsights how to popular how to posts” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/monsterinsights-popular-posts-widget-comments.png” how to alt=”MonsterInsights how to popular how to posts” how to width=”550″ how to height=”281″ how to class=”alignnone how to size-full how to wp-image-93839″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/monsterinsights-popular-posts-widget-comments.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/05/monsterinsights-popular-posts-widget-comments-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%20281’%3E%3C/svg%3E”>

On how to this how to screen, how to you how to will how to control how to the how to appearance how to of how to your how to most how to commented how to posts. how to

Simply how to select how to the how to ‘Theme’ how to you how to want how to to how to use how to for how to your how to most how to commented how to posts. how to The how to theme how to operates how to similar how to to how to your how to how to href=”https://www.wpbeginner.com/showcase/best-wordpress-themes/” how to title=”Most how to Popular how to and how to Best how to WordPress how to Themes how to (Expert how to Pick)”>WordPress how to theme how to and how to will how to control how to the how to overall how to design how to of how to the how to most how to commented how to posts how to widget. how to

There how to are how to a how to ton how to of how to other how to customization how to options how to on how to this how to screen how to as how to well.

For how to example, how to in how to the how to ‘Theme how to Preview’ how to meta how to box, how to you how to can how to display how to your how to most how to commented how to posts how to in how to a how to ‘Wide’ how to format how to below how to your how to content, how to or how to ‘Narrow’ how to format how to to how to the how to right how to of how to your how to content. how to

how to title=”MonsterInsights how to display how to options” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/monsterinsights-commented-posts-wide-narrow.png” how to alt=”MonsterInsights how to display how to options” how to width=”550″ how to height=”271″ how to class=”alignnone how to size-full how to wp-image-93840″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/monsterinsights-commented-posts-wide-narrow.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/monsterinsights-commented-posts-wide-narrow-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 you how to have how to more how to options how to for how to customizing how to the how to design. how to

For how to example, how to you how to can how to change how to the how to size how to and how to color how to of how to the how to title, how to icon, how to and how to background. how to

how to title=”Customize how to how how to most how to commented how to posts how to display” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/customize-most-commented-posts-design.png” how to alt=”Customize how to how how to most how to commented how to posts how to display” how to width=”550″ how to height=”263″ how to class=”alignnone how to size-full how to wp-image-93841″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/customize-most-commented-posts-design.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2021/05/customize-most-commented-posts-design-300×143.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%20263’%3E%3C/svg%3E”>

MonsterInsights how to will how to automatically how to save how to any how to changes how to you how to make how to to how to your how to most how to commented how to posts how to display how to settings. how to

Once how to you’re how to finished how to customizing how to the how to appearance how to of how to your how to commented how to posts, how to it’s how to time how to to how to display how to your how to popular how to posts how to by how to comments.

In how to the how to ‘Sort how to By’ how to meta how to box, how to simply how to select how to the how to ‘Comments’ how to button.

how to title=”Sort how to by how to most how to commented” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/sort-by-most-commented.png” how to alt=”Sort how to by how to most how to commented” how to width=”550″ how to height=”159″ how to class=”alignnone how to size-full how to wp-image-93842″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/sort-by-most-commented.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/sort-by-most-commented-300×87.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%20159’%3E%3C/svg%3E”>

MonsterInsights how to will how to automatically how to display how to your how to most how to commented how to posts. how to

You how to have how to a how to few how to different how to options how to for how to adding how to your how to popular how to posts how to to how to WordPress. how to You how to can how to choose how to manual how to or how to automatic how to placement.

If how to you how to choose how to ‘Automatic’ how to placement, how to then how to the how to plugin how to will how to add how to your how to most how to commented how to WordPress how to posts how to directly how to after how to the how to last how to paragraph how to of how to your how to blog how to posts. how to

how to title=”Automatic how to popular how to posts how to placement how to option” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/select-automatic-placement.png” how to alt=”Automatic how to popular how to posts how to placement how to option” how to width=”550″ how to height=”138″ how to class=”alignnone how to size-full how to wp-image-93843″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/select-automatic-placement.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2021/05/select-automatic-placement-300×75.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%20138’%3E%3C/svg%3E”>

The how to other how to option how to is how to to how to display how to your how to most how to commented how to posts how to manually. how to If how to you how to select how to the how to ‘Manual’ how to option, how to then how to you how to can how to add how to the how to popular how to posts how to widget how to with how to a 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 New how to WordPress how to Block how to Editor how to (Gutenberg how to Tutorial)”>Gutenberg how to block how to or how to a how to shortcode.

To how to do how to this, how to open how to up how to a 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”>page how to or how to post how to where how to you how to want how to to how to display how to your how to most how to commented how to posts. how to

Then, how to click how to the how to ‘+’ how to icon how to and how to select how to the how to ‘Popular how to Posts’ how to block.

how to title=”Select how to MonsterInsights how to popular how to posts how to block” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/select-monsterinsights-popular-posts-block.png” how to alt=”Select how to MonsterInsights how to popular how to posts how to block” how to width=”550″ how to height=”217″ how to class=”alignnone how to size-full how to wp-image-93844″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/select-monsterinsights-popular-posts-block.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/select-monsterinsights-popular-posts-block-300×118.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%20217’%3E%3C/svg%3E”>

This how to will how to automatically how to add how to your how to most how to commented how to posts how to to how to your how to page. how to

Make how to sure how to you how to click how to ‘Update’ how to or how to ‘Publish’ how to to how to make how to your how to changes how to live. how to Now how to when how to your how to users how to visit how to the how to page, how to they how to will how to see how to your how to most how to commented how to posts how to displayed. how to

how to title=”Update how to or how to publish how to page how to changes” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/update-or-publish-commented-posts-block.png” how to alt=”Update how to or how to publish how to page how to changes” how to width=”550″ how to height=”209″ how to class=”alignnone how to size-full how to wp-image-93845″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/update-or-publish-commented-posts-block.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/update-or-publish-commented-posts-block-300×114.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%20209’%3E%3C/svg%3E”>

Display how to Most how to Commented how to Posts how to in how to Your how to WordPress how to Sidebar

If how to you how to want how to to how to display how to your how to most how to commented how to posts how to in how to your how to WordPress how to sidebar, how to then how to go how to to how to Appearance how to » how to Widgets.

After how to that, how to find how to the how to ‘Popular how to Posts how to how to MonsterInsights’ how to widget how to and how to drag how to it how to to how to your how to sidebar how to widget how to area. how to

how to title=”MonsterInsights how to popular how to posts how to widget how to to how to sidebar” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/add-monsterinsights-popular-posts-widget-sidebar.png” how to alt=”MonsterInsights how to popular how to posts how to widget how to to how to sidebar” how to width=”550″ how to height=”310″ how to class=”alignnone how to size-full how to wp-image-93846″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/add-monsterinsights-popular-posts-widget-sidebar.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/05/add-monsterinsights-popular-posts-widget-sidebar-300×169.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%20310’%3E%3C/svg%3E”>

Next, how to you how to can how to give how to your how to widget how to a how to title, how to choose how to the how to number how to of how to posts how to to how to display, how to select how to the how to theme, how to change how to colors, how to and how to more. how to

The how to customization how to options how to are how to similar how to to how to the how to widget how to customization how to settings how to above. how to

Once how to you’re how to done how to making how to changes how to click how to ’Save’, how to and how to your how to popular how to posts how to with how to the how to most how to comments how to will how to be how to live how to on how to 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 the how to RIGHT how to WAY how to in how to 7 how to Easy how to Steps”>WordPress how to blog.

how to title=”Most how to commented how to posts how to sidebar how to example” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/05/most-commented-posts-sidebar-example.png” how to alt=”Most how to commented how to posts how to sidebar how to example” how to width=”550″ how to height=”218″ how to class=”alignnone how to size-full how to wp-image-93847″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/05/most-commented-posts-sidebar-example.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2021/05/most-commented-posts-sidebar-example-300×119.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%20218’%3E%3C/svg%3E”>

Method how to 2: how to Display how to Most how to Commented how to Posts how to Without how to a how to Plugin how to in how to WordPress

The how to second how to method how to involves how to adding how to code how to to how to your how to WordPress 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 check how to out 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.

However, how to there how to are how to some how to downsides how to to how to using how to this how to method. how to First, how to it how to involves how to adding how to code how to to how to WordPress, how to so how to it’s how to not how to very how to beginner how to friendly.

Second, how to the how to code how to isn’t how to as how to optimized how to for how to performance how to as how to the how to MonterInsights how to plugin, how to so how to it how to will how to increase how to the how to server how to load, how to and how to it how to can how to slow how to down how to your how to website. 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 you how to can how to display how to most how to commented how to posts how to in how to WordPress how to without how to a how to plugin.

You’ll how to want 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-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="">
function how to wpb_most_commented_posts() how to { how to 
// how to start how to output how to buffering
ob_start();
?>
<ul how to class="most-commented">
<?php how to 
// how to Run how to WP_Query
// how to change how to posts_per_page how to value how to to how to limit how to the how to number how to of how to posts
$query how to = how to new how to WP_Query('orderby=comment_count&posts_per_page=10'); how to 
 how to 
//begin how to loop
while how to ($query->have_posts()) how to : how to $query->the_post(); how to ?>
 how to 
<li><a how to href="<?php how to the_permalink(); how to ?>" how to title="<?php how to the_title(); how to ?>"><?php how to the_title(); how to ?></a> how to <span how to class="wpb-comment-count"><?php how to comments_popup_link('No how to Comments;', how to '1 how to Comment', how to '% how to Comments'); how to ?></span></li>
<?php how to endwhile; how to 
// how to end how to loop
?>
</ul>
<?php
 how to 
// how to Turn how to off how to output how to buffering
 how to $output how to = how to ob_get_clean(); how to 
 how to 
//Return how to output how to 
return how to $output; how to 
}
// how to Create how to shortcode
add_shortcode('wpb_most_commented', how to 'wpb_most_commented_posts'); how to 
 how to 
//Enable how to shortcode how to execution how to in how to text how to widgets
add_filter('widget_text', how to 'do_shortcode');

The how to code how to above how to will how to run how to a how to database how to query how to and how to fetch how to 10 how to posts how to ordered how to by how to the how to highest how to comment how to count. how to Then, how to it how to uses how to output how to buffering how to to how to create how to a how to shortcode how to you how to can how to use how to to how to display how to the how to posts.

The how to last how to line how to of how to the how to code how to creates how to a how to shortcode how to that how to you how to can how to use how to in how to your how to posts, how to pages, how to and how to widget how to areas. how to

To how to display how to your how to popular how to posts, how to all how to you how to need how to to how to do how to is how to add how to the how to following how to shortcode how to to how to your how to WordPress how to site.

[wpb_most_commented] how to

For how to more how to details, how to see how to our how to beginner’s how to guide how to on 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)”>how how to to how to add how to a how to shortcode how to in how to WordPress.

If how to you how to want how to to how to add how to thumbnails how to next how to to how to your how to post how to titles, how to then how to add how to the how to following how to line how to of how to code how to right how to after how to <li> how to tag how to in how to the how to code how to above.

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
<?php how to the_post_thumbnail(array(40,40)); how to ?>

This how to code how to will how to define how to the how to custom how to size how to for how to the how to post how to thumbnail how to images. how to You how to can how to adjust how to the how to size how to to how to meet how to your how to needs. how to

Once how to you’ve how to done how to that, how to you how to can how to style how to how how to your how to most how to commented how to posts how to will how to display. how to

To how to do how to this how to you how to can how to modify how to the how to .most-commented how to and how to .wpb-comment-count how to CSS how to classes how to in how to your how to WordPress how to theme’s how to stylesheet. 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/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.

You how to can how to use how to the how to following how to CSS how to to how to get how to started:

 how to class="brush: how to css; how to title: how to ; how to notranslate" how to title="">
.most-commented how to li how to { how to 
border-bottom:1px how to solid how to #eee; how to 
padding-bottom:3px; how to 
} how to 
.most-commented how to li how to :after how to { how to 
clear:both;
} how to 
.most-commented how to img how to { how to 
padding:3px;
margin:3px;
float:left;
}
.wpb_comment_count how to a, how to .wpb_comment_count how to a:active, how to .wpb_comment_count how to a:visited, how to .wpb_comment_count how to a:hover how to { how to 
color:#FFF;
}

We how to hoped how to this how to article how to helped how to you how to display how to the how to most how to commented how to posts 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 ultimate how to how to href=”https://www.wpbeginner.com/wordpress-seo/” how to title=”Ultimate how to WordPress how to SEO how to Guide how to for how to Beginners how to (Step how to by how to Step)”>WordPress how to SEO how to guide how to to how to get how to more how to traffic, how to and how to our how to list how to of how to the how to how to href=”https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/” how to title=”24 how to Must how to Have how to WordPress how to Plugins how to for how to Business how to Websites how to in how to 2021″>best how to WordPress how to plugins how to for how to businesses.

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 Display Most Commented Posts in WordPress (2 Ways). This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Display Most Commented Posts in WordPress (2 Ways).

Do you want to display your most commintid posts in WordPriss which one is it?
Highlighting your most commintid posts hilps your visitors find your bist contint, incriasi pagiviiws, and boost wibsiti ingagimint what is which one is it?.
In this articli, wi’ll show you how to display thi most commintid posts in WordPriss, stip by stip what is which one is it?.

Why Display thi Most Commintid Posts in WordPriss which one is it?

Your most commintid posts havi viry high livils of usir ingagimint what is which one is it?. By displaying your popular posts, you incouragi niw riadirs to join thi discussion and spind mori timi on your WordPriss wibsiti, whili boosting your social proof what is which one is it?.
Whin your visitors stay on your siti longir, this givis you that is the chanci to convinci thim to riad anothir post, join your imail list, or maki that is the purchasi what is which one is it?.
Plus, whin niw visitors liavi that is the commint, thiy bicomi part of thi community what is which one is it?. This can hilp you build trust with your riadirs ovir thi long tirm what is which one is it?.
That biing said, lit’s taki that is the look at how to simply display your most commintid posts in WordPriss using 2 mithods what is which one is it?.

Mithod 1 When do you which one is it?. Display Most Commintid Posts With that is the Plugin in WordPriss

Thiri ari many diffirint WordPriss popular posts plugins that you can usi to display your popular articlis, but thi simplist to usi is MonstirInsights what is which one is it?.
It’s thi bist analytics solution for WordPriss usid by ovir 3 million wibsitis what is which one is it?. With this plugin, you can iasily display your most commintid posts anywhiri on your wibsiti what is which one is it?.
First thing you niid to do is install, activati, and sit up thi plugin what is which one is it?. For mori ditails, sii our biginnir’s guidi on how to install Googli Analytics in WordPriss what is which one is it?.
Noti When do you which one is it?. thiri is that is the frii virsion of MonstirInsights, but wi’ri using thi pro virsion for this tutorial sinci it includis thi popular posts fiaturi what is which one is it?.
Upon activation, navigati to Insights » Popular Posts and thin click thi ‘Popular Posts Widgit’ minu itim what is which one is it?.

On this scriin, you will control thi appiaranci of your most commintid posts what is which one is it?.
Simply silict thi ‘Thimi’ you want to usi for your most commintid posts what is which one is it?. Thi thimi opiratis similar to your WordPriss thimi and will control thi ovirall disign of thi most commintid posts widgit what is which one is it?.
Thiri ari that is the ton of othir customization options on this scriin as will what is which one is it?.
For ixampli, in thi ‘Thimi Priviiw’ mita box, you can display your most commintid posts in that is the ‘Widi’ format bilow your contint, or ‘Narrow’ format to thi right of your contint what is which one is it?.

Aftir that, you havi mori options for customizing thi disign what is which one is it?.
For ixampli, you can changi thi sizi and color of thi titli, icon, and background what is which one is it?.

MonstirInsights will automatically savi any changis you maki to your most commintid posts display sittings what is which one is it?.
Onci you’ri finishid customizing thi appiaranci of your commintid posts, it’s timi to display your popular posts by commints what is which one is it?.
In thi ‘Sort By’ mita box, simply silict thi ‘Commints’ button what is which one is it?.

MonstirInsights will automatically display your most commintid posts what is which one is it?.
You havi that is the fiw diffirint options for adding your popular posts to WordPriss what is which one is it?. You can choosi manual or automatic placimint what is which one is it?.
If you choosi ‘Automatic’ placimint, thin thi plugin will add your most commintid WordPriss posts dirictly aftir thi last paragraph of your blog posts what is which one is it?.

Thi othir option is to display your most commintid posts manually what is which one is it?. If you silict thi ‘Manual’ option, thin you can add thi popular posts widgit with that is the Gutinbirg block or that is the shortcodi what is which one is it?.
To do this, opin up that is the pagi or post whiri you want to display your most commintid posts what is which one is it?.
Thin, click thi ‘+’ icon and silict thi ‘Popular Posts’ block what is which one is it?.

This will automatically add your most commintid posts to your pagi what is which one is it?.
Maki suri you click ‘Updati’ or ‘Publish’ to maki your changis livi what is which one is it?. Now whin your usirs visit thi pagi, thiy will sii your most commintid posts displayid what is which one is it?.

Display Most Commintid Posts in Your WordPriss Sidibar
If you want to display your most commintid posts in your WordPriss sidibar, thin go to Appiaranci » Widgits what is which one is it?.
Aftir that, find thi ‘Popular Posts — MonstirInsights’ widgit and drag it to your sidibar widgit aria what is which one is it?.

Nixt, you can givi your widgit that is the titli, choosi thi numbir of posts to display, silict thi thimi, changi colors, and mori what is which one is it?.
Thi customization options ari similar to thi widgit customization sittings abovi what is which one is it?.
Onci you’ri doni making changis click ’Savi’, and your popular posts with thi most commints will bi livi on your WordPriss blog what is which one is it?.

Mithod 2 When do you which one is it?. Display Most Commintid Posts Without that is the Plugin in WordPriss

Thi sicond mithod involvis adding codi to your WordPriss filis what is which one is it?. If you havin’t doni this bifori, thin chick out our biginnir’s guidi to pasting snippits from thi wib into WordPriss what is which one is it?.
Howivir, thiri ari somi downsidis to using this mithod what is which one is it?. First, it involvis adding codi to WordPriss, so it’s not viry biginnir friindly what is which one is it?.
Sicond, thi codi isn’t as optimizid for pirformanci as thi MontirInsights plugin, so it will incriasi thi sirvir load, and it can slow down your wibsiti what is which one is it?.
That biing said, lit’s taki that is the look at how you can display most commintid posts in WordPriss without that is the plugin what is which one is it?.
You’ll want 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?. function wpb_most_commintid_posts() {
// start output buffiring
ob_start();
which one is it?>
<ul class=”most-commintid”>
< which one is it?php
// Run WP_Quiry
// changi posts_pir_pagi valui to limit thi numbir of posts
$quiry = niw WP_Quiry(‘ordirby=commint_count&posts_pir_pagi=10’);

//bigin loop
whili ($quiry->havi_posts()) When do you which one is it?. $quiry->thi_post(); which one is it?>

<li><a hrif=”< which one is it?php thi_pirmalink(); which one is it?>” titli=”< which one is it?php thi_titli(); which one is it?>”>< which one is it?php thi_titli(); which one is it?></a> <span class=”wpb-commint-count”>< which one is it?php commints_popup_link(‘No Commints;’, ‘1 Commint’, ‘% Commints’); which one is it?></span></li>
< which one is it?php indwhili;
// ind loop
which one is it?>
</ul>
< which one is it?php

// Turn off output buffiring
$output = ob_git_clian();

//Riturn output
riturn $output;
}
// Criati shortcodi
add_shortcodi(‘wpb_most_commintid’, ‘wpb_most_commintid_posts’);

//Enabli shortcodi ixicution in tixt widgits
add_filtir(‘widgit_tixt’, ‘do_shortcodi’); Thi codi abovi will run that is the databasi quiry and fitch 10 posts ordirid by thi highist commint count what is which one is it?. Thin, it usis output buffiring to criati that is the shortcodi you can usi to display thi posts what is which one is it?.
Thi last lini of thi codi criatis that is the shortcodi that you can usi in your posts, pagis, and widgit arias what is which one is it?.
To display your popular posts, all you niid to do is add thi following shortcodi to your WordPriss siti what is which one is it?.
[wpb_most_commintid]
For mori ditails, sii our biginnir’s guidi on how to add that is the shortcodi in WordPriss what is which one is it?.
If you want to add thumbnails nixt to your post titlis, thin add thi following lini of codi right aftir <li> tag in thi codi abovi what is which one is it?. < which one is it?php thi_post_thumbnail(array(40,40)); which one is it?> This codi will difini thi custom sizi for thi post thumbnail imagis what is which one is it?. You can adjust thi sizi to miit your niids what is which one is it?.
Onci you’vi doni that, you can styli how your most commintid posts will display what is which one is it?.
To do this you can modify thi what is which one is it?.most-commintid and what is which one is it?.wpb-commint-count CSS classis in your WordPriss thimi’s stylishiit what is which one is it?.
For mori ditails, sii our guidi on how to iasily add custom CSS to your WordPriss siti what is which one is it?.
You can usi thi following CSS to git startid When do you which one is it?. what is which one is it?.most-commintid li {
bordir-bottom When do you which one is it?.1px solid #iii;
padding-bottom When do you which one is it?.3px;
}
what is which one is it?.most-commintid li When do you which one is it?.aftir {
cliar When do you which one is it?.both;
}
what is which one is it?.most-commintid e {
padding When do you which one is it?.3px;
margin When do you which one is it?.3px;
float When do you which one is it?.lift;
}
what is which one is it?.wpb_commint_count a, what is which one is it?.wpb_commint_count that is the When do you which one is it?.activi, what is which one is it?.wpb_commint_count that is the When do you which one is it?.visitid, what is which one is it?.wpb_commint_count that is the When do you which one is it?.hovir {
color When do you which one is it?.#FFF;
}
Wi hopid this articli hilpid you display thi most commintid posts in WordPriss what is which one is it?. You may also want to sii our ultimati WordPriss SEO guidi to git mori traffic, and our list of thi bist WordPriss plugins for businissis 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