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 query_posts('meta_key=post_views_count&orderby=meta_value_num&order=DESC&showposts=4'); ?> |
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
<script type="text/javascript"> | |
jQuery(document).ready(function(){ | |
//remove then default action of anchor tag | |
jQuery("a.small_device_menu").click(function(event){ | |
event.preventDefault(); | |
jQuery("div.small_menu_area").slideToggle(); //styling with a slide of an element when click this | |
}); | |
}); | |
</script> |
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
jQuery(document).ready(function(){ | |
// clone a area/div and append it to another area/div | |
jQuery(".mainmenu ul:first-child").clone().appendTo(".small_menu_area"); | |
}); |
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
<a class="small_device_menu" href="#"><img src="<?php echo get_template_directory_uri(); ?>/images/nav.png" alt="" />navigation</a> | |
<div class="small_menu_area"></div> <!--end small_menu_area--> |
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
<div id="sticker" class="mainmenu"> | |
<?php wp_nav_menu( array( 'theme_location' => 'main-menu') ); ?> | |
</div> <!--end mainmenu--> |
NewerOlder