Changeset 45590 for trunk/src/wp-includes/class-wp-embed.php
- Timestamp:
- 07/02/2019 11:41:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-embed.php
r43571 r45590 171 171 foreach ( $handlers as $id => $handler ) { 172 172 if ( preg_match( $handler['regex'], $url, $matches ) && is_callable( $handler['callback'] ) ) { 173 if ( false !== $return = call_user_func( $handler['callback'], $matches, $attr, $url, $rawattr ) ) { 173 $return = call_user_func( $handler['callback'], $matches, $attr, $url, $rawattr ); 174 if ( false !== $return ) { 174 175 /** 175 176 * Filters the returned embed handler.
Note: See TracChangeset
for help on using the changeset viewer.