Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author dpowney

    (@dpowney)

    Hi snigga,

    Add this code snippet to your functions.php file. I will add this in the next plugin release. Thanks, Daniel.

    /**
     * Removes ratings from RSS feed title
     *
     * @param $post_title
     */
    function mr_filter_the_title_rss( $post_title ) {
    	global $wp_query;
    	return $wp_query->post->post_title;
    }
    add_filter( 'the_title_rss', 'mr_filter_the_title_rss', 10, 1 );
    Thread Starter snigga

    (@snigga)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘RSS feed: remove ratings from titles?’ is closed to new replies.