get_the_title_rss()
Retrieve the current post title for the feed.
Description Description
Return Return
(string) Current post title.
Source Source
File: wp-includes/feed.php
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. */ $title = apply_filters( 'the_title_rss', $title ); return $title; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |