Site logo

Archived topic

Customize Search Results Title

5 replies · Started by John on September 9, 2022

Viewing posts 1–6 of 6

Hi, Please, How I can change Search Results Title background from white to this color: #F5F4EE, text alignment: Center, Text Color: #F46100 and Text: Results for "search query" e.g. Results for "cars"

Hi there,

try adding this CSS:

.search.separate-containers .page-header {
    background-color: #F5F4EE;
    color: #F46100;
    text-align: center;
}

Worked! Thanks David, But how I can change the Text to: Results for “search query” e.g. Results for “cars”

Yes, Like Results for “cars”

Try this snippet instead:

add_filter('generate_search_title_output',function($title) {
    $title = sprintf(
        '<header %s><h1 class="page-title">%s</h1></header>',
        generate_get_attr( 'page-header' ),
        sprintf(
            /* translators: 1: Search query name */
            __( 'Results for: "%s"', 'generatepress' ),
            '<span>' . get_search_query() . '</span>'
        )
    )
    return $title;
});
This archived topic is closed to new replies.