You appear to be a bot. Output may be restricted
Description
Formats custom column data for a taxonomy
The bw_custom_column_taxonomy filter allows you to change the separator between terms. When using the [bw_field] or [bw_fields] shortcode an alternative approach is to hook into the 'oik_shortcode_result' filter
Usage
bw_custom_column_taxonomy( $column, $post_id );
Parameters
- $column
- ( string ) required –
- $post_id
- ( integer ) required –
Returns
void
Source
File name: oik/libs/bw_fields.php
Lines:
1 to 6 of 6
function bw_custom_column_taxonomy( $column, $post_id ) { $terms = get_the_term_list( $post_id, $column, "", ",", "" ); $terms = apply_filters( "bw_custom_column_taxonomy", $terms, $column, $post_id ); e( $terms ); return $terms; }