Ticket #52250: 52250.diff
File 52250.diff, 742 bytes (added by , 4 years ago) |
---|
-
src/wp-admin/includes/export.php
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 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.