Use the `embed_maybe_make_link` filter to test WP_Embed::autoembed().

See #33106.
Built from https://develop.svn.wordpress.org/trunk@33470


git-svn-id: http://core.svn.wordpress.org/trunk@33437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2015-07-29 00:02:24 +00:00
parent 15a7d98ce6
commit ff32df7c07
2 changed files with 1 additions and 7 deletions

View File

@ -129,12 +129,6 @@ class WP_Embed {
* `->maybe_make_link()` can return false on failure.
*/
public function shortcode( $attr, $url = '' ) {
// This filter can be used to output custom HTML instead of allowing oEmbed to run.
$custom = apply_filters( 'wp_embed_shortcode_custom', false, $attr, $url );
if ( false !== $custom ) {
return $custom;
}
$post = get_post();
if ( empty( $url ) && ! empty( $attr['src'] ) ) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta4-33469';
$wp_version = '4.3-beta4-33470';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.