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
153
154           /* translators: column name */
155           if ( !$this->detached ) {
156                $posts_columns['parent'] = _x( 'Uploaded to', 'column name' );
157                if ( post_type_supports( 'attachment', 'comments' ) )
158                     $posts_columns['comments'] = '<span class="vers"><div title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></div></span>';
159           }
160           /* translators: column name */
161           $posts_columns['date'] = _x( 'Date', 'column name' );
162           $posts_columns = apply_filters( 'manage_media_columns', $posts_columns, $this->detached );
163
164           return $posts_columns;
165      }
166
167      function get_sortable_columns() {
168           return array(
169                'title'    => 'title',
170                'author'   => 'author',
171                'parent'   => 'parent',