how can i disable header for this specific page. Is there any php function that disables the header for a specific page? In wordpress
Here is the link: https://techmax.ro/elementor-14408/
how can i disable header for this specific page. Is there any php function that disables the header for a specific page? In wordpress
Here is the link: https://techmax.ro/elementor-14408/
2
Answers
You can hide by CSS and using WP
is_page
function. check the below code.Put this condition where the code is done to get the menu.
if(! is_page( ‘your-page-slug’ ) ){
wp_nav_menu( array( ‘theme_location’ => ‘your menu name’, ‘container_class’ => ‘my_extra_menu_class’ ) );
}
Using this there is no extra dom element on this page.