Advertisement
Guest User

Untitled

a guest
Nov 17th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Usercount Shortcode
  4. Plugin URI: https://premium.wpmudev.org
  5. Description: A plugin through which we can display the total network user count by shortcode
  6. Version: 1.0
  7. Author: James Morris
  8. Author URI: https://premium.wpmudev.org/profile/jrmorris77
  9. License: GPL2
  10. */
  11. function wpb_user_count() {
  12.     $usercount = get_user_count();
  13.     return $usercount;
  14. }
  15. // Creating a shortcode to display user count
  16. add_shortcode('user_count', 'wpb_user_count');
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement