php - Display menu if site is homepage (wordpress) -


on site have left menu, appears on every subpage

<div class="category_menu">     <nav class="cat_menu">         <div class="menu_title parent_cat_name">             <h6><?php echo $category->name; ?></h6>         </div>         <?php rs_left_menu_subcats($subcategories); ?>     </nav> </div> 

i display menu if site homepage. in other cases should menu code pasted.

what code may use?

you can combine is_front_page() , is_home() wordpress function.

<?php if( is_front_page() && is_home() ) { ?>     // on homepage, show menu <?php } else { ?> <div class="category_menu">     <nav class="cat_menu">         <div class="menu_title parent_cat_name">             <h6><?php echo $category->name; ?></h6>         </div>         <?php rs_left_menu_subcats($subcategories); ?>     </nav> </div> <?php } ?> 

Comments

Popular posts from this blog

java - Run spring boot application error: Cannot instantiate interface org.springframework.context.ApplicationListener -

reactjs - React router and this.props.children - how to pass state to this.props.children -

Excel VBA "Microsoft Windows Common Controls 6.0 (SP6)" Location Changes -