Changeset 29155 for trunk/src/wp-includes/class-oembed.php
- Timestamp:
- 07/14/2014 12:22:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-oembed.php
r29114 r29155 161 161 * 162 162 * @since 4.0.0 163 * @param string $name 164 * @param array $arguments 165 * @return mixed 163 * @access public 164 * 165 * @param callable $name Method to call. 166 * @param array $arguments Arguments to pass when calling. 167 * @return mixed|bool Return value of the callback, false otherwise. 166 168 */ 167 169 public function __call( $name, $arguments ) { … … 172 174 * Takes a URL and returns the corresponding oEmbed provider's URL, if there is one. 173 175 * 176 * @since 4.0.0 177 * @access public 178 * 174 179 * @see WP_oEmbed::discover() 175 180 * 176 * @param string $url The URL to the content.177 * @param array $args Optionalarguments.181 * @param string $url The URL to the content. 182 * @param string|array $args Optional provider arguments. 178 183 * @return bool|string False on failure, otherwise the oEmbed provider URL. 179 * @since 4.0.0180 184 */ 181 185 public function get_provider( $url, $args = '' ) { … … 214 218 * 215 219 * @since 4.0.0 220 * @access public 216 221 * @static 217 222 * 218 223 * @see wp_oembed_add_provider() 219 224 * 220 * @param string $format The format of URL that this provider can handle. You can use225 * @param string $format Format of URL that this provider can handle. You can use 221 226 * asterisks as wildcards. 222 227 * @param string $provider The URL to the oEmbed provider.. … … 239 244 * 240 245 * @since 4.0.0 246 * @access public 241 247 * @static 242 248 *
Note: See TracChangeset
for help on using the changeset viewer.