Advertisement
Guest User

Untitled

a guest
Nov 17th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. function wpb_user_count() {
  3.     $usercount = get_user_count();
  4.     return $usercount;
  5. }
  6. // Creating a shortcode to display user count
  7. add_shortcode('user_count', 'wpb_user_count');
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement