Advertisement
firoze

Show Real Time Online Users in WordPress

Aug 2nd, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // How to Show Real Time Online Users in WordPress
  2.  
  3. first install https://wordpress.org/plugins/wp-useronline/
  4.  
  5.  
  6. and use in template where to show user
  7.  
  8. <?php if (function_exists('users_online')): ?>
  9. <p>Users online: <div id="useronline-count"><?php users_online(); ?></div></p>
  10. <?php endif; ?>
  11. *********************************************************************************
  12.  
  13. suorce link:http://www.wpbeginner.com/plugins/how-to-show-real-time-online-users-in-wordpress/
  14.  
  15. full usages guide link :https://github.com/lesterchan/wp-useronline/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement