bw_email() – Implement [bw_email] shortcode for an inline mailto: link

You appear to be a bot. Output may be restricted

Description

Implement [bw_email] shortcode for an inline mailto: link

Usage

$string = bw_email( $atts, $content, $tag );

Parameters

$atts
( array ) optional – shortcode parameters
$content
( string ) optional – not expected
$tag
( string ) optional – not expected

Returns

string expanded shortcode

Source

File name: oik/shortcodes/oik-email.php
Lines:

1 to 4 of 4
function bw_email( $atts=null, $content=null, $tag=null ) {
  $atts['tag'] = bw_array_get( $atts, "tag", "span" );
  return( _bw_email( $atts ) ); 
}  
 

 View on Trac