You appear to be a bot. Output may be restricted
Description
Implement 'manage_posts_custom_column' action for oik-idsEcho the ID when required Notes: 'manage_posts_custom_column' is fired for non-hierarchical posts types such as posts. 'manage_pages_custom_column' is fired for hierarchical post types such as pages.
Usage
oik_ids_value( $column_name, $id );
Parameters
- $column_name
- ( string ) required – column to display
- $id
- ( string ) required – post ID
Returns
voidSource
File name: oik/oik-ids.phpLines:
1 to 6 of 6
function oik_ids_value( $column_name, $id ) { //bw_backtrace(); if ( $column_name == 'ID' ) { echo $id; } }View on GitHub View on Trac