WP_Comments_List_Table::__construct() WordPress Method

The WP_Comments_List_Table::__construct() method is used to create a new comments list table object. This object is used to manage comments in the WordPress admin.

WP_Comments_List_Table::__construct( array $args = array() ) #

Constructor.


Description

Top ↑

See also


Top ↑

Parameters

$args

(array)(Optional)An associative array of arguments.

Default value: array()


Top ↑

Source

File: wp-admin/includes/class-wp-comments-list-table.php

	public function __construct( $args = array() ) {
		global $post_id;

		$post_id = isset( $_REQUEST['p'] ) ? absint( $_REQUEST['p'] ) : 0;

		if ( get_option( 'show_avatars' ) ) {
			add_filter( 'comment_author', array( $this, 'floated_admin_avatar' ), 10, 2 );
		}

		parent::__construct(
			array(
				'plural'   => 'comments',
				'singular' => 'comment',
				'ajax'     => true,
				'screen'   => isset( $args['screen'] ) ? $args['screen'] : null,
			)
		);
	}


Top ↑

Changelog

Changelog
VersionDescription
3.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.