You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_list] shortcode
Usage
bw_list__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_list –
Returns
voidSource
File name: oik/shortcodes/oik-list.phpLines:
1 to 7 of 7
function bw_list__syntax( $shortcode="bw_list" ) { $syntax = _sc_posts(); $syntax['numberposts'] = BW_::bw_skv( "-1", __( "numeric", "oik" ), __( "number of items to list. -1=list all", "oik" ) ); $syntax['thumbnail'] = BW_::bw_skv( "none", "thumbnail|medium|large|full|nnn|wxh", __( "image size", "oik" ) ); $syntax['uo'] = BW_::bw_skv( "u", "o", __( "Display unordered or ordered list", "oik" ) ); return( $syntax ); }View on GitHub View on Trac