wp-admin/includes/class-wp-list-table.php:15Base class for displaying a list of items in an ajaxified HTML table.
Every hook that fires from inside WP_List_Table, in the order it appears in the class, grouped by the method that fires it.
$itemsarraypublic$_argsarrayprotected$_pagination_argsarrayprotected$screenWP_Screenprotected$_actionsarrayprivate$_paginationstringprivate$modesarrayprotected$_column_headersarrayprotected$compat_fieldsarrayprotected$compat_methodsarrayprotected#[AllowDynamicProperties]class WP_List_Table { /** * The current list of items. * * @since 3.1.0 * @var array */ public $items; /** * Various information about the current table. * * @since 3.1.0 * @var array */ protected $_args; /** * Various information needed for displaying the pagination. * * @since 3.1.0 * @var array */ protected $_pagination_args = array(); /** * The current screen. * * @since 3.1.0 * @var WP_Screen */ protected $screen; /** * Cached bulk actions. * * @since 3.1.0 * @var array */ private $_actions; /** * Cached pagination output. * * @since 3.1.0 * @var string */ private $_pagination; /** * The view switcher modes. * * @since 4.1.0 * @var array */ protected $modes = array(); /** * Stores the value returned by ->get_column_info(). * * @since 4.1.0 * @var array */ protected $_column_headers; /** * {@internal Missing Summary} * * @var array */ protected $compat_fields = array( '_args', '_pagination_args', 'screen', '_actions', '_pagination' ); /** * {@internal Missing Summary} * * @var array */ protected $compat_methods = array(Introduced in 3.1.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
get_primary_column_aria_label() added.verified against sourcesrc/wp-admin/includes/class-wp-list-table.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.