Changeset 35485 for trunk/src/wp-includes/embed-functions.php
- Timestamp:
- 11/01/2015 03:41:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/embed-functions.php
r35472 r35485 44 44 45 45 /** 46 * Create default array of embed parameters.46 * Creates default array of embed parameters. 47 47 * 48 48 * The width defaults to the content width as specified by the theme. If the … … 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 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 );
Note: See TracChangeset
for help on using the changeset viewer.