You appear to be a bot. Output may be restricted
Description
Format a taxonomy for the 'post'
Usage
bw_format_taxonomy( $field, $post_id );
Parameters
- $field
- ( mixed ) required –
- $post_id
- ( mixed ) required –
Returns
voidTO DO
is this function required? Does the parameter to format_label need to be how it is now?Source
File name: oik/libs/bw_fields.phpLines:
1 to 8 of 8
function bw_format_taxonomy( $field, $post_id ) { // We need to query the taxonomy name sdiv( "bw_taxonomy $field" ); bw_format_label( array( $field => $field ) ); bw_format_sep( $field ); bw_custom_column_taxonomy( $field, $post_id ); ediv(); }View on GitHub View on Trac