You appear to be a bot. Output may be restricted
Description
Usage
bw_testimonials__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_testimonials –
Returns
voidSource
File name: oik-testimonials/shortcodes/oik-testimonials.phpLines:
1 to 12 of 12
function bw_testimonials__syntax( $shortcode="bw_testimonials" ) { $syntax = array( "numberposts" => bw_skv( 5, "<i>number</i>", "Number of posts to show" ) , "script" => bw_skv( "cycle.all", "<i>script</i>", "jQuery script" ) , "method" => bw_skv( "cycle", "<i>method</i>", "jQuery method " ) , "class" => bw_skv( $shortcode, "CSS classes", "CSS classes" ) ); $syntax += _sc_posts(); $syntax['post_type'] = bw_skv( "oik_testimonials", "<i>post_type</i>", "Post type to select" ); $syntax['orderby'] = bw_skv( "rand", "date|title|author", "Order by" ); $syntax['order'] = bw_skv( "ASC", "DESC", "Order" ); return( $syntax ); }View on GitHub