the_title_rss, $post->post_title

the_title_rss, $post->post_title

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('the_title_rss, $post->post_title') is found 2 times:

  • /modules/sitemaps/sitemap-builder.php line 1410
    				'loc'         => $parent_url,
    				'lastmod'     => jp_sitemap_datetime( $post->post_modified_gmt ),
    				'video:video' => array(
    					/** This filter is already documented in core/wp-includes/feed.php */
    					'video:title'         => apply_filters( 'the_title_rss', $post->post_title ),
    					'video:thumbnail_loc' => esc_url( $video_thumbnail_url ),
    					'video:description'   => $content,
    					'video:content_loc'   => esc_url( wp_get_attachment_url( $post->ID ) ),
    				),
    			),
    		);
    
  • /modules/sitemaps/sitemap-builder.php line 1511
    						'news:name'     => html_entity_decode( get_bloginfo( 'name' ), ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 ),
    						'news:language' => $language,
    					),
    					/** This filter is already documented in core/wp-includes/feed.php */
    					'news:title'            => apply_filters( 'the_title_rss', $post->post_title ),
    					'news:publication_date' => jp_sitemap_datetime( $post->post_date_gmt ),
    					'news:genres'           => 'Blog',
    				),
    			),
    		);