WP_Terms_List_Table::__construct()publicWP 3.1.0

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. String. $taxonomy
  • Global. String. $action
  • Global. Object. $tax

Changelog

Since 3.1.0 Introduced.

WP_Terms_List_Table::__construct() code WP 6.5.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';
	}
}