You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_background] shortcode
Usage
bw_background__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_background –
Returns
voidSource
File name: oik-css/shortcodes/oik-background.phpLines:
1 to 9 of 9
function bw_background__syntax( $shortcode="bw_background" ) { $syntax = array( "id,0" => BW_::bw_skv( __( "current ID", "oik-css" ), "<i>" . __( "ID", "oik-css" ) . "</i>", __( "Post ID to find image to display", "oik-css" ) ) , "selector,1" => BW_::bw_skv( "body", "<i>" . __( "CSS selector", "oik-css" ) . "</i>", __( "CSS selector for the background image", "oik-css" ) ) , "thumbnail" => BW_::bw_skv( "full", "thumbnail|medium|large", __( "Image size to use", "oik-css" ) ) , "post_type" => BW_::bw_skv( "attachment", "<i>" . __( "post type", "oik-css" ) . "</i>", __( "Post type", "oik-css" ) ) , "post_mime_type" => BW_::bw_skv( "image", "<i>" . __( "post mime type", "oik-css" ) . "</i>", __( "Post mime type", "oik-css" ) ) ); return( $syntax ); }View on GitHub View on Trac