Dropdown Menu – PHP Template Tag Usage Explained
Dropdown Menu Widget is no longer maintained. Please use it at your own risk.
Dropdown menu widget is so easy to use as a widget, but it also supports usage of PHP template tags. Using PHP code to insert the menu, you can easily add menus to your theme as many times as you like. In this post i will give you different code snippets to add the widget to your theme.
Default usage
Adding dropdown menu widget using php is so easy. If you are going to add just one menu, things get a lot easier. All you have to do is to insert:
<?php shailan_dropdown_menu( ); ?>
somewhere in your header.php
template. This is the default usage. This template tag uses settings page to get the necessary information. So after you add this code, you can easily change your menu options in the Dropdown Menu Widget options page.
Adding pages menu
To add a dropdown menu of your pages, you can use:
<?php shailan_dropdown_menu( array( 'menu' => 'pages' ) ); ?>
code. This snippet will get all the other data from the template tag options page except the menu type.
Adding categories menu
To add categories dropdown, you can use:
<?php shailan_dropdown_menu( array( 'menu' => 'categories' ) ); ?>
code. This snippet will also get all the other data from the template tag options page except the menu type.
Adding a custom menu using php code
To add a custom menu you created you need to set menu variable to either its ID or its name. Here are some examples:
<?php shailan_dropdown_menu( array('menu'=>'Katalog') ); // Adds a custom menu named Katalog ?> <?php shailan_dropdown_menu( array('menu'=>'439') ); // Adds a custom menu with id 438 ?>
You can add as many as you like. There is no limit on the number of menus you can add.
Full arguments template
If those are not enough for your requirements here is the full arguments list. You can create many different menus using this argument template. Just change the variables as you need:
<?php // SETUP $args =array( 'menu' => 'pages', // Menu type pages | categories | menuID | menu name 'exclude' => '21,35,438', // IDs of pages to be excluded 'login' => true, // Display login/logout link? 'admin' => false, // Show site admin link? 'vertical' => false, // Display vertical? 'home' => true, // Display home link? 'align' => 'right', // Align left | center | right 'width' => '500' // Width of menu ); // CREATE shailan_dropdown_menu( $args ); ?>
Conclusion
Dropdown menu widget allows you to easily manage your menus. It automatically generates menu code, effects and even CSS styles. All you need is to add it and then edit your menu as you like. Using template tag’s powers, now you can add multiple dropdown menus to your site, even if you don’t have any sidebars. Here i showed you most common uses of the template tag. I hope you found it useful.
NOTE: If you have any ideas, any points that need improvements, please leave your comment below.
Deal Notice: We are using A2 hosting for all of our websites, and we are really happy with their service. So we wanted to share you this discount link for you to try it out. If you get a hosting using this link, you will also help us build better content for you: SSD Hosting - 300% Faster Than Standard Hard Drives