WP_User_Search::__construct() – PHP5 Constructor – Sets up the object properties.

You appear to be a bot. Output may be restricted

Description

PHP5 Constructor – Sets up the object properties.

Usage

$WP_User_Search = WP_User_Search::__construct( $search_term, $page, $role );

Parameters

$search_term
( string ) optional – Search terms string.
$page
( int ) optional – Optional. Page ID.
$role
( string ) optional – Role name.

Returns

WP_User_Search

Source

File name: wordpress/wp-admin/includes/deprecated.php
Lines:

1 to 12 of 12
  function __construct( $search_term = '', $page = '', $role = '' ) {
    _deprecated_function( __construct, '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->WP_User_Search::prepare_query();
    $this->WP_User_Search::query();
    $this->WP_User_Search::do_paging();
  }
 

 View on GitHub View on Trac