diff --git wp-includes/feed.php wp-includes/feed.php
index ecb4a25293..154ecc08b7 100644
|
|
function get_feed_build_date( $format ) { |
662 | 662 | // Extract the post modified times from the posts. |
663 | 663 | $modified_times = wp_list_pluck( $wp_query->posts, 'post_modified_gmt' ); |
664 | 664 | |
| 665 | $modified_times = array_merge( $modified_times, wp_list_pluck( $wp_query->posts, 'post_date_gmt' ) ); |
| 666 | |
665 | 667 | // If this is a comment feed, check those objects too. |
666 | 668 | if ( $wp_query->is_comment_feed() && $wp_query->comment_count ) { |
667 | 669 | // Extract the comment modified times from the comments. |