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
| function genius_add_search_toggle ( $items, $args ) { | |
| if ( $args->theme_location == 'social') { | |
| $items .= '<li id="search-toggle" class="menu-item"><a href="#"><span class="screen-reader-text">Search Toggle</span></a></li>'; | |
| } | |
| return $items; | |
| } | |
| add_filter( 'wp_nav_menu_items', 'genius_add_search_toggle', 10, 2 ); |
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
| /** | |
| * Detect Scroll. | |
| * | |
| * Detect scroll distance from top and/or bottom and scroll up and down. | |
| */ | |
| ( function( $ ) { | |
| var lastScrollTop = 0, delta = 20; | |
| $(window).scroll(function(){ |
NewerOlder