Changeset 35471 for trunk/src/wp-includes/embed-functions.php
- Timestamp:
- 10/31/2015 03:42:01 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/embed-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/embed-functions.php
r35466 r35471 511 511 * @since 4.4.0 512 512 * 513 * @param WP_Post|int $post Optional. Post object or ID. Default is global `$post`.513 * @param WP_Post|int $post Post object or ID. 514 514 * @param int $width The requested width. 515 515 * @return array|false Response data on success, false if post doesn't exist. 516 516 */ 517 function get_oembed_response_data( $post = null, $width ) {517 function get_oembed_response_data( $post, $width ) { 518 518 $post = get_post( $post ); 519 519
Note: See TracChangeset
for help on using the changeset viewer.