You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_otd] shortcode
Usage
bw_otd__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_otd –
Returns
void
Source
File name: oik-dates/shortcodes/oik-otd.php
Lines:
1 to 8 of 8
function bw_otd__syntax( $shortcode="bw_otd" ) { $syntax = array( "periods" => bw_skv( bw_otd_default_periods(), "<i>offset1,offset2</i>", "Periods to display" ) , "post_type" => bw_skv( "post", "<i>post types</i>", "Post types to select" ) , "exact" => bw_skv( "n", "y", "Match day exactly" ) ); $syntax = array_merge( $syntax, _sc_posts() ); return( $syntax ); }