You appear to be a bot. Output may be restricted
Description
Implement manage_edit-$ptype_sortable_columns for oik-idsFor fields in the post the key and value are the same. The value is the name of the orderby field. Set the field to an array if you want the order to be DESC rather than ASC
Usage
$array = oik_ids_sortable_column( $cols );
Parameters
- $cols
- ( array ) required – sortable columns
Returns
array updated sortable columnsSource
File name: oik/oik-ids.phpLines:
1 to 5 of 5
function oik_ids_sortable_column( $cols ) { //bw_backtrace(); $cols['ID'] = 'ID'; return( $cols ); }View on GitHub View on Trac