wordpress / latest / classes / wp_user_search / __construct.html

WP_User_Search::__construct( string $search_term = '', int $page = '', string $role = '' ): WP_User_Search

PHP5 Constructor – Sets up the object properties.

Parameters

$search_term string Optional
Search terms string.

Default: ''

$page int Optional
Page ID.

Default: ''

$role string Optional
Role name.

Default: ''

Return

WP_User_Search

Source

File: wp-admin/includes/deprecated.php. View all references

function __construct( $search_term = '', $page = '', $role = '' ) {
	_deprecated_function( __FUNCTION__, '3.1.0', 'WP_User_Query' );

	$this->search_term = wp_unslash( $search_term );
	$this->raw_page = ( '' == $page ) ? false : (int) $page;
	$this->page = ( '' == $page ) ? 1 : (int) $page;
	$this->role = $role;

	$this->prepare_query();
	$this->query();
	$this->do_paging();
}

Uses

Uses Description

Changelog

Version Description
2.1.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_user_search/__construct