You appear to be a bot. Output may be restricted
Description
Implement [bw_mailto] shortcode for a mailto: link
Usage
$string = bw_mailto( $atts, $content, $tag );
Parameters
- $atts
- ( array ) optional – shortcode parameters
- $content
- ( string ) optional – not expected
- $tag
- ( string ) optional – not expected
Returns
string expanded shortcode Use the tag parameter to control the formatting. e.g. divSource
File name: oik/shortcodes/oik-email.phpLines:
1 to 4 of 4
function bw_mailto( $atts=null, $content=null, $tag=null ) { $atts['tag'] = bw_array_get( $atts, "tag", "p" ); return( _bw_email( $atts ) ); }View on GitHub View on Trac