Show Total Register User in WordPress
Moursalin islam

Moursalin islam @moursalinislam

About: The Open Book

Location:
Bangladesh
Joined:
Feb 6, 2025

Show Total Register User in WordPress

Publish Date: Feb 11
0 0

Display Total Register User in #WordPress Using custom code (short-code)

  1. Put this code in your theme function.php file

// Create a shortcode to display total registered users
function total_registered_users_shortcode() {
$user_count = count_users();
return 'Total Registered Users: ' . $user_count['total_users'];
}
add_shortcode('total_users', 'total_registered_users_shortcode');

  1. use the short-code to display post/page anywhere

[total_users]

Comments 0 total

    Add comment