WP_Posts_List_Table::set_hierarchical_display() – Sets whether the table layout should be hierarchical or not.

You appear to be a bot. Output may be restricted

Description

Sets whether the table layout should be hierarchical or not.

Usage

WP_Posts_List_Table::set_hierarchical_display( $display );

Parameters

$display
( bool ) required – Whether the table layout should be hierarchical.

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-posts-list-table.php
Lines:

1 to 3 of 3
  public function set_hierarchical_display( $display ) {
    $this->hierarchical_display = $display;
  }
 

 View on GitHub View on Trac