You appear to be a bot. Output may be restricted
Description
Syntax for [audio] shortcode
Usage
audio__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: audio –
Returns
voidSource
File name: oik/libs/oik-sc-help.phpLines:
1 to 8 of 8
function audio__syntax( $shortcode='audio' ) { $syntax = array( "src,mp3,m4a,ogg,wav,wma" => BW_::bw_skv( null, "<i>" . __( "URL", null ) . "</i>", __( "If omitted uses first attachment", 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 ) ) ); return( $syntax ); }View on GitHub View on Trac