You appear to be a bot. Output may be restricted
Description
Format the fields (format="_")This should just be a case of calling the bw_metadata() function for [bw_fields] shouldn't it? This makes use of the fields= parameter passed from the invoking shortcode. e.g. [ bw_pages format="T _" fields="_dtib_rating" ]
Usage
bw_field_function_fields( $post, $atts, $f );
Parameters
- $post
- ( mixed ) required –
- $atts
- ( mixed ) required –
- $f
- ( mixed ) required –
Returns
voidSource
File name: oik-fields/oik-fields.phpLines:
1 to 6 of 6
function bw_field_function_fields( $post, &$atts, $f ) { //bw_trace2(); $atts['id'] = $post->ID; oik_require( "shortcodes/oik-fields.php", "oik-fields" ); e( bw_metadata( $atts ) ); }View on GitHub