Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: manage_{$screen->id}_sortable_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
596      function get_column_info() {
597           if ( isset( $this->_column_headers ) )
598                return $this->_column_headers;
599
600           $screen = get_current_screen();
601
602           $columns = get_column_headers( $screen );
603           $hidden = get_hidden_columns( $screen );
604
605           $_sortable = apply_filters( "manage_{$screen->id}_sortable_columns", $this->get_sortable_columns() );
606
607           $sortable = array();
608           foreach ( $_sortable as $id => $data ) {
609                if ( empty( $data ) )
610                     continue;
611
612                $data = (array) $data;
613                if ( !isset( $data[1] ) )
614                     $data[1] = false;