Changeset 30674 for trunk/src/wp-includes/media.php
- Timestamp:
- 11/30/2014 11:23:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r30660 r30674 2038 2038 * @param int $width Image width 2039 2039 * @param int $height Image height 2040 * @return image resource2040 * @return resource resource 2041 2041 */ 2042 2042 function wp_imagecreatetruecolor($width, $height) { … … 2054 2054 * @since 2.9.0 2055 2055 * @see WP_Embed::register_handler() 2056 * 2057 * @global WP_Embed $wp_embed 2058 * @param string $id 2059 * @param string $regex 2060 * @param callable $callback 2061 * @param int $priority 2056 2062 */ 2057 2063 function wp_embed_register_handler( $id, $regex, $callback, $priority = 10 ) { … … 2065 2071 * @since 2.9.0 2066 2072 * @see WP_Embed::unregister_handler() 2073 * 2074 * @global WP_Embed $wp_embed 2075 * @param string $id 2076 * @param int $priority 2067 2077 */ 2068 2078 function wp_embed_unregister_handler( $id, $priority = 10 ) { … … 2136 2146 * @param string $url The URL that should be embedded. 2137 2147 * @param array $args Additional arguments and parameters. 2138 * @return bool|string False on failure or the embed HTML on success.2148 * @return false|string False on failure or the embed HTML on success. 2139 2149 */ 2140 2150 function wp_oembed_get( $url, $args = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.