WP_Links_List_Table::__construct()publicWP 3.1.0

Constructor.

Method of the class: WP_Links_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Links_List_Table = new WP_Links_List_Table();
$WP_Links_List_Table->__construct( $args );
$args(array)
An associative array of arguments.
Default: array()

Notes

Changelog

Since 3.1.0 Introduced.

WP_Links_List_Table::__construct() code WP 6.4.3

public function __construct( $args = array() ) {
	parent::__construct(
		array(
			'plural' => 'bookmarks',
			'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
		)
	);
}