WP_Terms_List_Table::__construct()
Constructor.
Method of the class: WP_Terms_List_Table{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_Terms_List_Table = new WP_Terms_List_Table(); $WP_Terms_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.
- Global. String. $post_type Global post type.
- Global. String. $taxonomy Global taxonomy.
- Global. String. $action
- Global. Object. $tax
Changelog
Since 3.1.0 | Introduced. |
WP_Terms_List_Table::__construct() WP Terms List Table:: construct code WP 6.6.2
public function __construct( $args = array() ) { global $post_type, $taxonomy, $action, $tax; parent::__construct( array( 'plural' => 'tags', 'singular' => 'tag', 'screen' => isset( $args['screen'] ) ? $args['screen'] : null, ) ); $action = $this->screen->action; $post_type = $this->screen->post_type; $taxonomy = $this->screen->taxonomy; if ( empty( $taxonomy ) ) { $taxonomy = 'post_tag'; } if ( ! taxonomy_exists( $taxonomy ) ) { wp_die( __( 'Invalid taxonomy.' ) ); } $tax = get_taxonomy( $taxonomy ); // @todo Still needed? Maybe just the show_ui part. if ( empty( $post_type ) || ! in_array( $post_type, get_post_types( array( 'show_ui' => true ) ), true ) ) { $post_type = 'post'; } }