• Resolved internesia

    (@internesia)


    How can I change the single blog post header title? The site languages are Swedish (default) and Finnish. I would like the header title to be in English as “Blog”. I haven’t translated it to Finnish, so in the Finnish page it says “Blog”, but in the Swedish page it says “Blogg”. I tried to change this with Poedit, but it won’t change. I saved the edited Swedish Poedit files to wp-content/languages/themes.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Try to change the text with Loco translate plugin. It should work. If it doesn’t work, follow the below steps to do it –
    1. Install and activate the oceanwp child theme –
    2. Add the below code to the fucntions.php file of the child theme to edit the text –

    function prefix_blog_page_header_title( $title ) {
        if ( is_single('post') ) {
            $title = 'Blog';
        }
        return $title;    
    }
    add_filter( 'ocean_title', 'prefix_blog_page_header_title', 20 );
    • This reply was modified 6 years, 10 months ago by Amit Singh.
    Thread Starter internesia

    (@internesia)

    Thanks, I used the function and that worked.

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Single blog post header title’ is closed to new replies.