• How can i edit the search results page embedded in OceanWP theme, so that the page with a title similar to the word i entered in the search bar show up first or at least highlighted?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

    Add the below code to the functions.php file of the child theme to alter the search result page title. Edit the code as per your need –

    function my_alter_search_page_title( $title ) {
     
        if ( is_search() ) {
            $title = 'My Search Title';
        }
     
        // Return the title
        return $title;
        
    }
    add_filter( 'ocean_title', 'my_alter_search_page_title', 20 );
    • This reply was modified 5 years, 5 months ago by Amit Singh.
Viewing 1 replies (of 1 total)
  • The topic ‘Search Results Page filter by page title’ is closed to new replies.