diff --git src/wp-includes/embed-functions.php src/wp-includes/embed-functions.php
index ba8b08d..0a3bf18 100644
|
|
|
function wp_embed_defaults( $url = '' ) { |
| 74 | 74 | * |
| 75 | 75 | * @since 2.9.0 |
| 76 | 76 | * |
| 77 | | * @param int $width Width of the embed in pixels. |
| 78 | | * @param int $height Height of the embed in pixels. |
| 79 | | * @param string $url The URL that should be embedded. |
| | 77 | * @param array $size An array of embed width and height values |
| | 78 | * in pixels (in that order). |
| | 79 | * @param string $url The URL that should be embedded. |
| 80 | 80 | */ |
| 81 | 81 | return apply_filters( 'embed_defaults', compact( 'width', 'height' ), $url ); |
| 82 | 82 | } |