You appear to be a bot. Output may be restricted
Description
Examples for [bw_countdown] shortcode
Usage
bw_countdown__example( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_countdown –
Returns
voidSource
File name: oik/shortcodes/oik-countdown.phpLines:
1 to 14 of 14
function bw_countdown__example( $shortcode="bw_countdown" ) { $text = __( "Countdown timer set to expire in 30 seconds", "oik" ); $expired = __( "Timer expired", "oik" ); $description = __( '30 second timer', "oik" ); $example = "until=+30s expiryText='" . $expired . "' description='" . $description . "'"; bw_invoke_shortcode( $shortcode, $example, $text ); $text = __( "Countdown timer - counting up", "oik" ) ; $description = __( "Time you have been looking at this page", "oik" ); $example = "since=+0s description='" . $description . "' format=S id=since "; bw_invoke_shortcode( $shortcode, $example, $text ); }View on GitHub View on Trac