HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/xampp/htdocs/wordpress0612/wp-content/pluginsBK/wp-useronline/deprecated.php
<?php

function useronline_page() {
	_deprecated_function( __FUNCTION__, '2.70', 'users_online_page()' );

	users_online_page();
}

function get_useronline() {
	_deprecated_function( __FUNCTION__, '2.70', 'users_online()' );

	users_online();
}

function get_most_useronline() {
	_deprecated_function( __FUNCTION__, '2.70', 'get_most_users_online()' );

	return get_most_users_online();
}

function get_most_useronline_date() {
	_deprecated_function( __FUNCTION__, '2.70', 'get_most_users_online()' );

	return get_most_users_online_date();
}

function get_useronline_count( $display = false ) {
	_deprecated_function( __FUNCTION__, '2.70', 'users_online_count()' );

	if ( !$display )
		return get_users_online_count();

	users_online_count();
}