You appear to be a bot. Output may be restricted
Description
Implement [bw_domain] shortcode
Usage
bw_domain();
Parameters
Returns
voidSource
File name: oik/shortcodes/oik-domain.phpLines:
1 to 14 of 14
function bw_domain() { $site = bw_get_option( "domain" ); if ( $site ) { $domain = bw_output( "domain" ); } else { $site_url = get_option( "siteurl" ); $site_url = trim_scheme( $site_url ); span( "domain siteurl" ); e( $site_url ); epan(); $domain = bw_ret(); } return( $domain ); }View on GitHub View on Trac