manage_{$this->screen->id}_sortable_columns

manage_{$this->screen->id}_sortable_columns

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('manage_{$this->screen->id}_sortable_columns') is found 1 times:

  • /wp-admin/includes/class-wp-list-table.php line 1344
    1340
    1341
    1342
    1343
    1344
    1345
    1346
    1347
    1348
    1349
    1350
    * @since 3.1.0
     *
     * @param array $sortable_columns An array of sortable columns.
     */
    $_sortable = apply_filters( "manage_{$this->screen->id}_sortable_columns", $sortable_columns );
     
    $sortable = array();
    foreach ( $_sortable as $id => $data ) {
        if ( empty( $data ) ) {
            continue;
        }