You appear to be a bot. Output may be restricted
Description
Syntax for [video] shortcode
Usage
video__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: video –
Returns
voidSource
File name: oik/libs/oik-sc-help.phpLines:
1 to 11 of 11
function video__syntax( $shortcode='video' ) { $syntax = array( "src,mp4,m4v,webm,ogv,wmv,flv" => BW_::bw_skv( null, "<i>" . __( "URL", null ) . "</i>", __( "If omitted uses first attachment", null ) ) , "poster" => BW_::bw_skv( null, "<i>" . __( "URL", null ) . "</i>", __( "Placeholder image", null ) ) , "loop" => BW_::bw_skv( "off", "on", __( "Allow looping of media", null ) ) , "autoplay" => BW_::bw_skv( "off", "on", __( "Causes media to autoplay", null ) ) , "preload" => BW_::bw_skv( "none", "auto|metadata", __( "How the audio should be loaded", null ) ) , "height" => BW_::bw_skv( null, __( "numeric", null ), __( "Required height", null ) ) , "width" => BW_::bw_skv( null, __( "numeric", null ), __( "Required width", null ) ) ); return( $syntax ); }View on GitHub View on Trac