Created
September 30, 2015 15:02
-
-
Save ibndawood/64dca22fb0bbff869e1a to your computer and use it in GitHub Desktop.
Shop By Departments menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function media_center_department_nav_menu(){ | |
| $department_nav_menu = ''; | |
| $department_nav_menu .= '<ul class="dropdown-menu">'; | |
| $department_nav_menu .= wp_list_categories( | |
| array( | |
| 'title_li' => '', | |
| 'hide_empty' => 1 , | |
| 'taxonomy' => 'product_cat', | |
| 'hierarchical' => 1 , | |
| 'echo' => 0 , | |
| ) | |
| ); | |
| $department_nav_menu .= '</ul>'; | |
| return $department_nav_menu; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment