apply_filters( ‘hidden_columns’, string[] $hidden, WP_Screen $screen, bool $use_defaults )

In this article

Filters the list of hidden columns.

Parameters

$hiddenstring[]
Array of IDs of hidden columns.
$screenWP_Screen
WP_Screen object of the current screen.
$use_defaultsbool
Whether to show the default columns.

Source

return apply_filters( 'hidden_columns', $hidden, $screen, $use_defaults );

Changelog

VersionDescription
4.4.1Added the use_defaults parameter.
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.