You appear to be a bot. Output may be restricted
Description
Syntax for embed shortcode- The default width comes from $GLOBALS['content_width'], if set
- Default height is min( ceil( $width * 1.5 ), 1000 );
Usage
embed__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: embed –
Returns
voidSource
File name: oik/libs/oik-sc-help.phpLines:
1 to 9 of 9
function embed__syntax( $shortcode='embed' ) { $syntax = array( "width" => BW_::bw_skv( "500", __( "numeric", null ), __( "Required width", null ) ) , "height" => BW_::bw_skv( "750", __( "numeric", null ), __( "Required height", null ) ) , "src" => BW_::bw_skv( null, __( "URL", null ), __( "URL to embed, if not provided in shortcode content", null ) ) ); return( $syntax ); }View on GitHub View on Trac