WordPress and buddypress programming

How to display the total number of registered users in WordPress

Viewing 0 reply threads
  • Author
    Posts
    • #3764
      michael mc
      Keymaster
      @michael
      // Function to return user count
      function wpb_user_count() { 
      $usercount = count_users();
      $result = $usercount['total_users']; 
      return $result; 
      }
      // Creating a shortcode to display user count
      add_shortcode('user_count', 'wpb_user_count'); 

      The code creates a shortcode 6.

Viewing 0 reply threads
  • You must be logged in to reply to this topic.