You appear to be a bot. Output may be restricted
Description
Implement syntax hook for [bw_countdown]
Usage
bw_countdown__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_countdown –
Returns
voidSource
File name: oik/shortcodes/oik-countdown.phpLines:
1 to 10 of 10
function bw_countdown__syntax( $shortcode="bw_countdown" ) { $syntax = array( "until" => BW_::bw_skv( null, "<i>" . __( "date", "oik" ) . "</i>", __( "Target date in format yyyy-mm-dd-hh-mm-ss", "oik" ) ) , "since" => BW_::bw_skv( null, "<i>" . __( "date", "oik" ) . "</i>", __( "Start date in format yyyy-mm-dd-hh-mm-ss", "oik" ) ) , "description" => BW_::bw_skv( null, "<i>" . __( "text", "oik" ) . "</i>", __( "Description for countdown", "oik" ) ) , "expiryUrl" => BW_::bw_skv( null, "<i>" . __( "URL", "oik" ) . "</i>", __( "Target URL when countdown reaches zero", "oik" ) ) , "expiryText" => BW_::bw_skv( null, "<i>" . __( "text", "oik" ) . "</i>", __( "Text to replace time when countdown reaches zero", "oik" ) ) ); return( $syntax ); }View on GitHub View on Trac