From 4a256357e917ef59db8a0fa79169669b1a01787f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 4 May 2024 19:09:57 +0000 Subject: [PATCH] Feeds: Add an optional `$post` parameter to `get_the_title_rss()`. This allows the function to be used outside of the loop and brings parity with `get_the_title()`. Follow-up to [1976], [3314], [21735]. Props khokansardar, oglekler. Fixes #61139. git-svn-id: https://develop.svn.wordpress.org/trunk@58096 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/feed.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/feed.php b/src/wp-includes/feed.php index 74a4b5009a5ee..4532697ea5526 100644 --- a/src/wp-includes/feed.php +++ b/src/wp-includes/feed.php @@ -150,11 +150,13 @@ function wp_title_rss( $deprecated = '–' ) { * Retrieves the current post title for the feed. * * @since 2.0.0 + * @since 6.6.0 Added the `$post` parameter. * + * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post. * @return string Current post title. */ -function get_the_title_rss() { - $title = get_the_title(); +function get_the_title_rss( $post = 0 ) { + $title = get_the_title( $post ); /** * Filters the post title for use in a feed.