You appear to be a bot. Output may be restricted
Description
Implement [bw_contact] shortcode to display the primary contact name
Usage
$string = bw_contact( $atts, $content, $tag );
Parameters
- $atts
- ( mixed ) optional –
- $content
- ( mixed ) optional –
- $tag
- ( mixed ) optional –
Returns
string Formatted contact name using hCard MicroformatSource
File name: oik/shortcodes/oik-company.phpLines:
1 to 9 of 9
function bw_contact( $atts=null, $content=null, $tag=null ) { $contact = bw_get_me( $atts ); span( "vcard" ); span( "fn" ); e( $contact ); epan(); epan(); return( bw_ret() ); }View on GitHub View on Trac