Disable topbar, sitebranding and mainmenu
-
Hello,
Here again ??
For testing, i trying disable/hide the header items, for making a landing page.
So i disable:
– sitebranding
– topbar
– mainmenuThe code below works perfect
function meteorite_nav_topbar() { // remove topbar menu } function meteorite_sitebranding() { // remove sitebranding } function meteorite_nav() { // remove main navigation }
But how can i do this for 1 page (with page ID)?
I try this:
if (is_page( 612 )) { function meteorite_nav_topbar() { // remove topbar menu } function meteorite_sitebranding() { // remove sitebranding } function meteorite_nav() { // remove main navigation } }
But doesn’t work.
PS: i know this is possible with css, but i will try it with the above snippet in the functions.php
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Disable topbar, sitebranding and mainmenu’ is closed to new replies.