RSS – Change Title

Posted in: Newspaper
Post count: 15

Hello,

Do you know where I can change the title of my RSS feed? Or how I can do it?

My RSS feed title is now just appearing like: mydomain.com

I’d like to give it a title but not sure where this option is.

Thanks!

Post count: 23312

Hello Mr Untechnical!,

Unfortunately, our theme does not manage feeds and there are no options for feeds in the theme panel. You will have to use a few RSS plugins that can help you on your task. If you are using an RSS feed for your RSS implementation you should check the plugin documentation to find the way of changing the title.

Thank you for your understanding!

Post count: 9544

Wordpress docs always helpful, too
https://codex.wordpress.org/Customizing_Feeds

I did find this function, which you might try at bottom of your main functions.php file

function custom_blogname_rss($val, $show) {
    if( 'name' == $show )
        $out = 'Custom Blog Name';
    else
        $out = $val;

    return $out;
}
add_filter('bloginfo_rss','custom_blogname_rss', 10, 2);

YOu can also google this topic
“how to change title of wordpress RSS feed”

  • This reply was modified 9 years by simchris.
Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.