Display Total Register User in #WordPress Using custom code (short-code)
- 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');
- use the short-code to display post/page anywhere
[total_users]
Top comments (0)