Skip to content

Overlay header exceptions

black laptop computer on white table

If you want global overlay header but on hoepage you want to have not template beneath?

add_filter( 'wpex_overlay_header_template', function( $template_id ) {
    if ( is_front_page() ) {
        $template_id = ''; // you can set it to none and just add the content you want on the homepage.
    }
    return $template_id;
} );

Dieser Beitrag hat 0 Kommentare

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

An den Anfang scrollen