Contributors: GamerZ
Donate link: https://lesterchan.net/site/donation/
Tags: useronline, usersonline, wp-useronline, online, users, user, ajax, widget
Requires at least: 4.0
Tested up to: 6.4
Stable tag: 2.88.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Enable you to display how many users are online on your Wordpress blog with detailed statistics.
This plugin enables you to display how many users are online on your Wordpress site, with detailed statistics of where they are and who they are (Members/Guests/Search Bots).
- Go to
WP-Admin -> Appearance -> Widgets
- The widget name is UserOnline.
- Scroll down for instructions on how to create a UserOnline Page.
- Open
wp-content/themes/<YOUR THEME NAME>/sidebar.php
and add Anywhere:
<?php if (function_exists('users_online')): ?>
<p>Users online: <div id="useronline-count"><?php users_online(); ?></div></p>
<?php endif; ?>
https://github.com/lesterchan/wp-useronline
I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
- Admin - Dashboard's Right Now
- UserOnline Page
- Admin - Settings Page
- Go to
WP-Admin -> Pages -> Add New
- Type any title you like in the post's title area
- If you ARE using nice permalinks, after typing the title, WordPress will generate the permalink to the page. You will see an 'Edit' link just beside the permalink.
- Click 'Edit' and type in
useronline
in the text field and click 'Save'. - Type
[page_useronline]
in the post's content area - Click 'Publish'
If you ARE NOT using nice permalinks, you need to go to WP-Admin -> Settings -> UserOnline
and under 'UserOnline URL', you need to fill in the URL to the UserOnline Page you created above.
- Use:
<?php if (function_exists('get_most_users_online')): ?>
<p>Most Users Ever Online Is <?php echo get_most_users_online(); ?> On <?php echo get_most_users_online_date(); ?></p>
<?php endif; ?>
- Use:
<?php if (function_exists('get_users_browsing_site')): ?>
<div id="useronline-browsing-site"><?php echo get_users_browsing_site(); ?></div>
<?php endif; ?>
- Use:
<?php if (function_exists('get_users_browsing_page')): ?>
<div id="useronline-browsing-page"><?php echo get_users_browsing_page(); ?></div>
<?php endif; ?>
Make sure your host is running PHP 5. The only foolproof way to do this is to add this line to wp-config.php (after the opening <?php
tag):
var_dump(PHP_VERSION);
- FIXED: Strip all tags before inserting data into the DB.
- FIXED: Fixed XS. Props Alex.
- FIXED: Fixed XSS. Props Juampa Rodriguez.
- NEW: Bump to WordPress 6.0.
- FIXED: Fixed XSS. Props @steffinstanly.
- NEW: Bump to WordPress 5.6
- NEW: Added more bots
- NEW: Remove hardcoded Archive text in page title
- FIXED: Update SCB Framework to support PHP 8
- NEW: Bump to WordPress 5.4
- NEW: Added more bots
- NEW: Bump to WordPress 5.3
- NEW: Added more bots
- FIXED: Update SCB Framework To Remove contextual_help
- FIXED: Duplicated Settings Saved admin_notices
- FIXED: Missing arrow
- FIXED: Updated bots list
- NEW: Bump to 4.9
- FIXED: Notices in SCB Framework
- NEW: Bump to 4.7
- NEW: New useronline_custom_template filter
- NEW: Remove po/mo files from the plugin
- NEW: Use translate.wordpress.org to translate the plugin
- FIXED: Update SCB Framework
- FIXED: Incompatible scbAdminPage::validate()
- FIXED: Notices in Widget Constructor for WordPress 4.3
- NEW: Uses WordPress native uninstall.php
- NEW: Bump to 4.0
- Show user agent when hovering over IP, instead of address lookup
- Use local time for UserOnline Page
- Fixed 'Strict Standards: Non-static method' warnings
- Update scb Framework
- show most recent visitors first
- fix duplicate entry errors
- fix ajax requests for SSL
- fixed settings page
- fixed "Return to default" buttons
- show user list in admin only to users with 'manage_options' capability
- added 'useronline_bots' filter
- don't show url and referral links for users in the admin area
- smarter detection via ajax requests
- fix SQL errors
- fix fatal error on upgrade
- fix %USERONLINE_COUNT% problem
- added option to link user names to their author page
- allow displaying online users from a different page than the current page
- bundle language files
- more info
- fix integration with WP-Stats
- fix error with get_admin_page_title()