• Resolved marv2

    (@marv2)


    How do I customize the title area of the single page template? I would like to do it in code, without a plugin.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author oceanwp

    (@oceanwp)

    Hello, you need to go to the General Options > Page Title section of the customizer to customize the page header.

    Thread Starter marv2

    (@marv2)

    Thanks, but I would like to customize it more, I want to add my own text, etc.
    Can you please tell me the file that I need to modify?
    Thanks!

    Theme Author oceanwp

    (@oceanwp)

    Hi, do you want to change the title for your entire website or only on single post?

    Thread Starter marv2

    (@marv2)

    Hi, i would like to change it for the whole website.

    Take care.

    Theme Author oceanwp

    (@oceanwp)

    Hi, okay, use this code in the functions.php file of your child theme:

    function my_alter_page_header_title( $title ) {
     
        $title = 'Custom Title';
     
        // Return the title
        return $title;
        
    }
    add_filter( 'ocean_title', 'my_alter_page_header_title', 20 );
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to customize Single Page Header’ is closed to new replies.