diff --git a/wp-admin/includes/export.php b/wp-admin/includes/export.php index 75c7b4924f..d33e2ffafb 100644 --- a/wp-admin/includes/export.php +++ b/wp-admin/includes/export.php @@ -542,8 +542,14 @@ function export_wp( $args = array() ) { foreach ( $posts as $post ) { setup_postdata( $post ); - /** This filter is documented in wp-includes/feed.php */ - $title = apply_filters( 'the_title_rss', $post->post_title ); + /** + * Filters the post title used for WXR exports. + * + * @since 5.7.0 + * + * @param string $post_title Title of the current post. + */ + $title = wxr_cdata( apply_filters( 'the_title_export', $post->post_title ) ); /** * Filters the post content used for WXR exports. diff --git a/wp-includes/version.php b/wp-includes/version.php index b447134fca..2d4b14088b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-50010'; +$wp_version = '5.7-alpha-50011'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.