You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_video] shortcode
Usage
bw_video__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_video –
Returns
void
Source
File name: oik-video/oik-video.inc
Lines:
1 to 12 of 12
function bw_video__syntax( $shortcode='bw_video' ) { $syntax = array(); $syntax = array_merge( $syntax, _sc_posts() ); $video_syntax = array( "url" => bw_skv( "", "<i>url</i>", "URL of Video to display" ) , "width" => bw_skv( null, "<i>width</i>", "Width in pixels" ) , "height" => bw_skv( null, "<i>height</i>", "Height in pixels" ) , "class" => bw_skv( "", "<i>classes</i>", "CSS classes" ) ); $syntax = array_merge( $syntax, $video_syntax ); return( $syntax ); }