WP_Themes_List_Table::__construct
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()
Заметки
- Смотрите: WP_List_Table::__construct() for more information on default arguments.
Список изменений
| С версии 3.1.0 | Введена. |
Код WP_Themes_List_Table::__construct() WP Themes List Table:: construct WP 6.9.4
public function __construct( $args = array() ) {
parent::__construct(
array(
'ajax' => true,
'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
)
);
}