Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: manage_{$this->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
775            * Filter the list table sortable columns for a specific screen.
776            *
777            * The dynamic portion of the hook name, `$this->screen->id`, refers
778            * to the ID of the current screen, usually a string.
779            *
780            * @since 3.5.0
781            *
782            * @param array $sortable_columns An array of sortable columns.
783            */
784           $_sortable = apply_filters( "manage_{$this->screen->id}_sortable_columns", $sortable_columns );
785
786           $sortable = array();
787           foreach ( $_sortable as $id => $data ) {
788                if ( empty( $data ) )
789                     continue;
790
791                $data = (array) $data;
792                if ( !isset( $data[1] ) )
793                     $data[1] = false;