WP_Themes_List_Table::__construct()publicWP 3.1.0

Constructor.

Метод класса: WP_Themes_List_Table{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Themes_List_Table = new WP_Themes_List_Table();
$WP_Themes_List_Table->__construct( $args );
$args(массив)
An associative array of arguments.
По умолчанию: array()

Заметки

Список изменений

С версии 3.1.0 Введена.

Код WP_Themes_List_Table::__construct() WP 6.5.2

public function __construct( $args = array() ) {
	parent::__construct(
		array(
			'ajax'   => true,
			'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
		)
	);
}