You appear to be a bot. Output may be restricted
Description
Implement [bw_email_signature] shortcode
Usage
bw_email_signature( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik-email-signature/oik-email-signature.phpLines:
1 to 7 of 7
function bw_email_signature( $atts=null ) { $options = get_option('bw_email_signature'); $text = $options['text']; $formatted_text = do_shortcode( $text ); return( $formatted_text ); }