Do you need to show the whole choice of feedback to your WordPress website online?

Feedback permit customers to take part and have interaction with the content material to your website online. By means of appearing off the whole remark depend, you’ll inspire extra customers to enroll in the dialog.

On this article, we will be able to display you how one can simply show the whole choice of feedback in WordPress, without or with a plugin.

How to display total number of comments in WordPress

Show WordPress Remark Depend the usage of a Plugin

This technique is more straightforward and it is strongly recommended for all customers. As a substitute of writing code, you’ll be the usage of a plugin to show remark depend in WordPress.

First, you wish to have to put in and turn on the Simple Blog Stats plugin. You might learn our step-by-step information on how to install a WordPress plugin for detailed directions.

Upon activation, move to Settings » Easy Weblog Stats web page to configure plugin settings.

Simple Blog Stats Plugin settings page

In this web page, you’ll see the entire shortcodes that you’ll use to turn other stats like the whole choice of feedback, registered users, choice of posts, classes, web page depend, and extra.

You wish to have to replicate the shortcode [sbs_approved] to show the whole choice of authorized feedback to your WordPress website online.

If you wish to show it in a put up or web page, then merely create a brand new put up or edit an present one.

At the put up edit display screen, you wish to have so as to add the shortcode block within the WordPress content material editor.

Add Shortcode Block to a WordPress Page

You’ll be able to do that by means of clicking at the Upload block (+) icon after which seek for the shortcode block. If you in finding it, you wish to have to click on on it so as to add the shortcode block to the editor.

Subsequent, you wish to have to stick the shortcode [sbs_approved] within the block settings.

Paste Shortcode to the Shortcode Block

You’ll be able to upload any textual content you need to show earlier than or after the shortcode.

Then again, you’ll additionally use the shortcode inside of a paragraph block. Merely reproduction and paste the shortcode the place you need to show the remark depend.

Paragraph block with comment count shortcode inside it

The use of the paragraph block will even can help you use the textual content styling choice to be had within the WordPress block editor.

As soon as you might be completed, click on at the put up or replace button to save lots of your adjustments. You’ll be able to now talk over with your website online to peer your adjustments in motion.

Comment count displayed in a WordPress post

Exhibiting general remark depend in a sidebar widget

You’ll be able to additionally use the similar shortcode inside of a WordPress widget and show it for your weblog’s sidebar.

Merely head over to the Look » Widgets web page and upload a ‘Textual content’ widget to the sidebar.

Text widget with comment count shortcode inside it

Subsequent, move forward and paste your shortcode within the ‘Textual content’ widget.

Don’t disregard to click on at the ‘Save’ button to retailer your widget settings.

You’ll be able to now talk over with your website online to peer the widget in motion.

Sidebar comment count in WordPress

Show WordPress Remark Depend (with no plugin)

If you happen to don’t need to use a plugin, then you’ll use show the whole remark depend manually.

This technique calls for you so as to add a code snippet for your website online. If you happen to haven’t completed this earlier than, then please take a look at our information on how to copy and paste code snippets in WordPress.

Prior to you do the rest, you will have to make a full backup of your website. This may occasionally let you to revive your website online in the event you ruin the rest whilst modifying the theme recordsdata.

Now you wish to have so as to add the next code for your theme’s functions.php record or a site-specific plugin:


serve as wpb_comment_count() { 
$comments_count = wp_count_comments();
$message =  'There are '.  $comments_count->authorized . ' feedback posted by means of our customers.';

go back $message; 
} 

add_shortcode('wpb_total_comments','wpb_comment_count'); 

This code creates a serve as that outputs the whole choice of authorized WordPress feedback to your website online. It additionally creates a shortcode to show it.

You’ll be able to now use the shortcode [wpb_total_comments] for your posts, pages, or a textual content widget to show the whole choice of feedback to your website online.

That is the way it regarded on our demo website online:

Preview of comment numbers

We are hoping this newsletter helped you show the whole choice of feedback to your WordPress website online. You may additionally need to take a look at our information on how to prevent comment spam in WordPress and the best WordPress plugins for each and every website online.

If you happen to preferred this newsletter, then please subscribe to our YouTube Channel for WordPress video tutorials. You’ll be able to additionally in finding us on Twitter and Facebook.

The put up How to Display the Total Number of Comments in WordPress gave the impression first on WPBeginner.

WordPress Maintenance

[ continue ]