You appear to be a bot. Output may be restricted
Description
Format a custom column on admin pagesImplements "manage_${post_type}_posts_custom_column" action for oik/bw custom post types
Usage
bw_custom_column_admin( $column, $post_id );
Parameters
- $column
- ( string ) required – the field being formatted
- $post_id
- ( ID ) required – the ID of the post being displayed
Returns
voidSource
File name: oik/libs/bw_fields.phpLines:
1 to 7 of 7
function bw_custom_column_admin( $column, $post_id ) { $post_type = bw_determine_post_type_from_hook( current_filter() ); if ( $post_type && bw_field_registered_for_object_type( $column, $post_type ) ) { bw_custom_column( $column, $post_id ); bw_flush(); } }View on GitHub View on Trac