You appear to be a bot. Output may be restricted
Description
Implement 'manage_posts_columns' filter for oik-idsAlso 'manage_pages_column', 'manage_media_column' So what priority do we need for the ID column to appear consistently at the end, after WordPress SEO's fields say?
Usage
$array = oik_ids_column( $cols );
Parameters
- $cols
- ( array ) required – array of defined columns
Returns
array updated array of defined columnsSource
File name: oik/oik-ids.phpLines:
1 to 4 of 4
function oik_ids_column( $cols ) { $cols['ID'] = __( 'ID', "oik" ) ; return $cols; }View on GitHub View on Trac