apply_filters( ‘screen_layout_columns’, array $empty_columns, string $screen_id, WP_Screen $screen )

In this article

Filters the array of screen layout columns.

Description

This hook provides back-compat for plugins using the back-compat Filters instead of add_screen_option() .

Parameters

$empty_columnsarray
Empty array.
$screen_idstring
Screen ID.
$screenWP_Screen
Current WP_Screen instance.

Source

$columns = apply_filters( 'screen_layout_columns', array(), $this->id, $this );

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

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