You appear to be a bot. Output may be restricted
Description
Display a blog option or shortcode
Usage
bw_display_blog_field( $shortcode, $tag, $use_shortcode );
Parameters
- $shortcode
- ( mixed ) required –
- $tag
- ( mixed ) optional default: div –
- $use_shortcode
- ( mixed ) optional default: 1 –
Returns
voidSource
File name: oik-ms/shortcodes/oik-blogs.phpLines:
1 to 10 of 10
function bw_display_blog_field( $shortcode, $tag="div", $use_shortcode=true ) { stag( $tag ); if ( $use_shortcode ) { e( do_shortcode( "[$shortcode]" ) ); } else { bw_get_option( $shortcode ); e( $shortcode ); } etag( "e$tag" ); }View on GitHub