WP_Themes_List_Table::__construct
Constructor.
Method of the class: WP_Themes_List_Table{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Themes_List_Table = new WP_Themes_List_Table(); $WP_Themes_List_Table->__construct( $args );
- $args(array)
- An associative array of arguments.
Default:array()
Notes
- See: WP_List_Table::__construct() for more information on default arguments.
Changelog
| Since 3.1.0 | Introduced. |
WP_Themes_List_Table::__construct() WP Themes List Table:: construct code WP 6.9.1
public function __construct( $args = array() ) {
parent::__construct(
array(
'ajax' => true,
'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
)
);
}