You appear to be a bot. Output may be restricted
Description
Syntax for [bw_copyright] shortcode
Usage
bw_copyright__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_copyright –
Returns
voidSource
File name: oik/includes/oik-sc-help.phpLines:
1 to 9 of 9
function bw_copyright__syntax( $shortcode="bw_copyright" ) { $syntax = array( "prefix" => BW_::bw_skv( __( "© Copyright", "oik" ), "<i>" . __( "string", "oik" ) . "</i>", __( "Copyright text prefix", "oik" ) ) , "company" => BW_::bw_skv( bw_get_option( "company" ), "<i>" . __( "company name", "oik" ) . "</i>", __( "from oik options - company", "oik" ) ) , "suffix" => BW_::bw_skv( __( "All rights reserved.", "oik" ), "<i>" . __( "string", "oik" ) . "</i>", __( "copyright suffix text", "oik" ) ) , "from" => BW_::bw_skv( bw_get_option( "yearfrom" ), "<i>" . __( "year", "oik" ) . "</i>", __( "from oik options - yearfrom", "oik" ) ) , "sep" => BW_::bw_skv( "-", ",|<i>" . __( "string", "oik" ) . "</i>", __( "default: ',' if one year difference '-' otherwise", "oik" ) ) ); return( $syntax ); }View on GitHub View on Trac