Recently one of our users asked us how they can replace their navigation menu with a jQuery slide panel menu? Slide panel menu can be used to greatly improve the user experience on mobile sites. In this article we will show you how to add a slide panel menu in WordPress themes.
Note: This is an intermediate level tutorial and requires sufficient HTML and CSS knowledge.
Replacing Default Menu With a Slide Panel Menu in WordPress
The goal here is to show a slide panel menu to users on smaller screens while keeping our themeβs default menu so that the users on laptops and desktops can see the full menu. Before we get started, it is important to know that there are many different WordPress themes, and you will have to deal with a little CSS later on.
First thing you need to do is open a plain text editor on your computer, like Notepad, and create a new file. Copy and paste this code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ( function ($) { $( '#toggle' ).toggle( function () { $( '#popout' ).animate({ left: 0 }, 'slow' , function () { $( '#toggle' ).html( '<img src="http://www.example.com/wp-content/themes/your-theme/images/menu.png" alt="close" />' ); }); }, function () { $( '#popout' ).animate({ left: -250 }, 'slow' , function () { $( '#toggle' ).html( '<img src="http://www.example.com/wp-content/themes/your-theme/images/menu.png" alt="close" />' ); }); } ); })(jQuery); |
Replace example.com
with your own domain name, and also replace your-theme
with your actual theme directory. Save this file as slidepanel.js on your desktop. This code uses jQuery to toggle a slide panel menu. It also animates the toggle effect.
Open an FTP client like Filezilla and connect to your website. Next, go to your theme directory and if it has a js folder then open it. If your theme directory does not have a js folder, then you need to create one and upload slidepanel.js file into the js folder.
The next step is designing or finding a menu icon. Most commonly used menu icon is the one with three lines. You can create one using Photoshop or find one of the many existing images from google. For this tutorial we are using a 27x23px menu icon. Once you have created or found your menu icon, rename it to menu.png and upload it to the images folder in your theme directory.
The next step is to enqueue javascript file for slide panel in WordPress. Basically just copy and paste this code in your themeβs functions.php
file.
1 | wp_enqueue_script( 'wpb_slidepanel' , get_template_directory_uri() . '/js/slidepanel.js' , array ( 'jquery' ), '20131010' , true ); |
Now that everything is setup, you need to modify your themeβs default menu. Usually, most themes display navigation menus in themeβs header.php
file. Open header.php
file and find the line similar to this one:
1 | <?php wp_nav_menu( array ( 'theme_location' => 'primary' , 'menu_class' => 'nav-menu' ) ); ?> |
The goal here is to wrap your themeβs navigation menu with the HTML code to display your slide panel menu on smaller screens. We are going to wrap it in a <div id="toggle">
and <div id="popout">
. Like this:
1 2 3 4 | <div id= "toggle" ><img src= "http://www.example.com/wp-content/themes/your-theme/images/menu.png" alt= "Show" /></div> <div id= "popout" > <?php wp_nav_menu( array ( 'theme_location' => 'primary' , 'menu_class' => 'nav-menu' ) ); ?> </div> |
Replace example.com with your own domain name and your-theme with your theme directory. Save your changes.
The last step is to use CSS to hide the menu icon for users with larger screens and display it to users with smaller screens. We also need to adjust the position of the menu icon and the appearance of the slide panel. Copy and paste this CSS to your themeβs stylesheet.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | @media screen and ( min-width : 769px ) { #toggle { display : none ; } } @media screen and ( max-width : 768px ) { #popout { position : fixed ; height : 100% ; width : 250px ; background : rgb ( 25 , 25 , 25 ); background : rgba( 25 , 25 , 25 , . 9 ); color : white ; top : 0px ; left : -250px ; overflow : auto ; } #toggle { float : right ; position : fixed ; top : 60px ; right : 45px ; width : 28px ; height : 24px ; } .nav-menu li { border-bottom : 1px solid #eee ; padding : 20px ; width : 100% ; } .nav-menu li:hover { background : #CCC ; } .nav-menu li a { color : #FFF ; text-decoration : none ; width : 100% ; } } |
Remember that your themeβs navigation menu could be using different CSS classes, and they may conflict with this CSS style. However, you can troubleshoot these issues by using the Chrome Inspector tool to find out which css classes are conflicting within your stylesheet. Play around with the CSS to match your style and needs.
We hope this tutorial helped you add a slide panel menu in WordPress using jQuery. For feedback and questions please leave a comment below and donβt forget to follow us on Google+