Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: manage_posts_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
278           $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all';
279           if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) )
280                $posts_columns['comments'] = '<span class="vers"><img alt="' . esc_attr__( 'Comments' ) . '" src="' . esc_url( admin_url( 'images/comment-grey-bubble.png' ) ) . '" /></span>';
281
282           $posts_columns['date'] = __( 'Date' );
283
284           if ( 'page' == $post_type )
285                $posts_columns = apply_filters( 'manage_pages_columns', $posts_columns );
286           else
287                $posts_columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type );
288           $posts_columns = apply_filters( "manage_{$post_type}_posts_columns", $posts_columns );
289
290           return $posts_columns;
291      }
292
293      function get_sortable_columns() {
294           return array(
295                'title'    => 'title',
296                'author'   => 'author',