• Resolved mosabua

    (@mosabua)


    Hi,

    how change I change the Text “Blog” in the Single Post View. I know that I can change it in the Customizer/Blog/SinglePost to either Blog or Post title but I want to change it to a custom text that is always the same.

    thanks werner

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

    Add the below code to the functions.php file of the child theme.

    function my_alter_single_post_header_title( $title ) {
     
        if ( is_singular('post') ) {
            $title = 'My Custom Title';
        }
     
        // Return the title
        return $title;
        
    }
    add_filter( 'ocean_title', 'my_alter_single_post_header_title', 20 );
    Thread Starter mosabua

    (@mosabua)

    Thanks – it works just perfect!

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change “Blog” text in Single Posts’ is closed to new replies.