diff --git a/wp-includes/class-wp-embed.php b/wp-includes/class-wp-embed.php index 7405197094..d15a764e73 100644 --- a/wp-includes/class-wp-embed.php +++ b/wp-includes/class-wp-embed.php @@ -35,6 +35,7 @@ class WP_Embed { // After a post is saved, cache oEmbed items via AJAX add_action( 'edit_form_advanced', array( $this, 'maybe_run_ajax_cache' ) ); + add_action( 'edit_page_form', array( $this, 'maybe_run_ajax_cache' ) ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index c40dd1ae87..837266b950 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33641'; +$wp_version = '4.4-alpha-33642'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.