Skip to main content

Change "Feed" to Forum at the top of the main page

I'd like to change the word "Feed" at the top of this page and in the navigation menu to Forum. Please advise on how to do so. Thank you!

Change "Feed" to Forum at the top of the main page

Thomas Oates

You can change the menu item text by going to Settings->Menu Settings and edit the Feed item. However, that won't change the page title. There are probably other ways (translation plugins, maybe) but I changed it to Home using the following code:

    // Update some labels
    add_filter('gettext', 'my_translate_text', 10, 3);
    function my_translate_text( $translated_text, $untranslated_text, $domain ) {
        if ( 'fluent-community' !== $domain ) {
            return $translated_text;
        }

        if ( 'Feed' == $translated_text ) {
            return 'Home';
        }

        return $translated_text;
    }

If you use this plugin you can do it without any problem: https://es.wordpress.org/plugins/loco-translate/