get_the_title_rss() WP 1.0
Retrieve the current post title for the feed.
Hooks from the function
Return
String. Current post title.
Usage
get_the_title_rss();
Changelog
Since 2.0.0 | Introduced. |
Code of get_the_title_rss() get the title rss WP 5.6
function get_the_title_rss() {
$title = get_the_title();
/**
* Filters the post title for use in a feed.
*
* @since 1.2.0
*
* @param string $title The current post title.
*/
return apply_filters( 'the_title_rss', $title );
}Related Functions
From tag: RSS
More from category: Posts, pages...
- edit_post_link()
- get_delete_post_link()
- get_edit_post_link()
- get_permalink()
- get_post_field()
- get_post_status()
- get_post_time()
- get_sample_permalink()
- get_the_content()
- get_the_date()
- get_the_excerpt()