Close Menu
My SiteMy Site
  • Home
  • Reviews
  • Computers
  • How Tos
  • Travel & Lifestyle
  • Phone ROMs
  • Contact
    • Advertise
    • About Us
Facebook X (Twitter) Instagram
My SiteMy Site
  • Home
  • Reviews
  • Computers
  • How Tos
  • Travel & Lifestyle
  • Phone ROMs
  • Contact
    • Advertise
    • About Us
My SiteMy Site
Home»Web Design Tips»Wordpress»How to Display Registered Users Comment Count in WordPress without Plugin
Wordpress

How to Display Registered Users Comment Count in WordPress without Plugin

Oscar FrankBy Oscar Frank2 Mins Read
Share
Facebook Twitter LinkedIn WhatsApp Pinterest Email

There are lots of things which can be achieved in a wordpress blog, and here is another little trick I came across after some little research on wordpress themes. You may want to display the number of comments by your blog registered users and you’ve been looking for a plugin to output the number of user comment as text. Well, search no further, cos here is a little wordpress code to display the user comment count on your wordpress theme.

To display the number of user comments, simple copy and paste the below code into the part of your WordPress theme you would like it to be displaye.

Ex: Login to your WordPress Dashboard

– Click on Appearance > Editor.

– Select Footer, then in the first line, paste the code

 

<?php
global $wpdb;
$where = ‘WHERE comment_approved = 1 AND user_id <> 0’;
$comment_counts = (array) $wpdb->get_results(”
SELECT user_id, COUNT( * ) AS total
FROM {$wpdb->comments}
{$where}
GROUP BY user_id
“, object);
foreach ( $comment_counts as $count ) {
$user = get_userdata($count->user_id);
echo ‘User ‘ . $user->display_name . ‘ comment count is ‘ . $count->total . ‘
‘;
}
?>

.

– Now click on Update File.

This would display your wordpress number of comments by users at the blogs footer.

Hope you enjoyed this little trick.

Wordpress Wordpress Plugin Wordpress theme

Related Posts

WordPress Blog Hosting made easy with SeekaHost Blog Hosting Control Panel

December 4, 2020

How to Create a Website with Elementor Page Builder in WordPress

April 1, 2019

Top 3 Reasons Backing Up Your Files Offsite Is Extremely Important

February 27, 2018
Add A Comment
Leave A Reply Cancel Reply

Recent Posts
  • 6 Sports Apps You Must Have On Your Phone
  • Valencia Travel Guide: All You Need to Know About This Spanish Gem
  • TikTok Faces Unexpected Ban in Senegal, Sparks Global Curiosity
  • The Apple GPT & Apple’s Chatbot Mysterious Debut
  • Triller Takes on TikTok: Filing for Public Listing
Get Exclusive Tech Insights!
My Site
Facebook X (Twitter) Instagram YouTube
© 2025 Oscarmini Co. Designed by illBytes.

Type above and press Enter to search. Press Esc to cancel.