Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: manage_media_columns

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
246           /**
247            * Filter the Media list table columns.
248            *
249            * @since 2.5.0
250            *
251            * @param array $posts_columns An array of columns displayed in the Media list table.
252            * @param bool  $detached      Whether the list table contains media not attached
253            *                             to any posts. Default true.
254            */
255           $posts_columns = apply_filters( 'manage_media_columns', $posts_columns, $this->detached );
256
257           return $posts_columns;
258      }
259
260      protected function get_sortable_columns() {
261           return array(
262                'title'    => 'title',
263                'author'   => 'author',
264                'parent'   => 'parent',