wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_embed_defaults › WordPress Function
Seit2.9.0
Veraltetn/v
› wp_embed_defaults ( $url = '' )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Creates default array of embed parameters.
The width defaults to the content width as specified by the theme. If the theme does not specify a content width, then 500px is used. The default height is 1.5 times the width, or 1000px, whichever is smaller. The {@see 'embed_defaults'} filter can be used to adjust either of these values.Ähnliche Funktionen: wp_oembed_get, wp_get_widget_defaults, wp_install_defaults, wp_embed_handler_audio, wp_default_styles
Quellcode
function wp_embed_defaults( $url = '' ) { if ( ! empty( $GLOBALS['content_width'] ) ) { $width = (int) $GLOBALS['content_width']; } if ( empty( $width ) ) { $width = 500; } $height = min( (int) ceil( $width * 1.5 ), 1000 ); /** * Filters the default array of embed dimensions. * * @since 2.9.0 * * @param int[] $size { * Indexed array of the embed width and height in pixels. * * @type int $0 The embed width. * @type int $1 The embed height. * } * @param string $url The URL that should be embedded. */ return apply_filters( 'embed_defaults', compact( 'width', 'height' ), $url ); }