diff --git a/src/wp-admin/includes/export.php b/src/wp-admin/includes/export.php
index 75c7b4924f..d33e2ffafb 100644
a
|
b
|
function export_wp( $args = array() ) { |
542 | 542 | foreach ( $posts as $post ) { |
543 | 543 | setup_postdata( $post ); |
544 | 544 | |
545 | | /** This filter is documented in wp-includes/feed.php */ |
546 | | $title = apply_filters( 'the_title_rss', $post->post_title ); |
| 545 | /** |
| 546 | * Filters the post title used for WXR exports. |
| 547 | * |
| 548 | * @since 5.7.0 |
| 549 | * |
| 550 | * @param string $post_title Title of the current post. |
| 551 | */ |
| 552 | $title = wxr_cdata( apply_filters( 'the_title_export', $post->post_title ) ); |
547 | 553 | |
548 | 554 | /** |
549 | 555 | * Filters the post content used for WXR exports. |