Skip to content

Instantly share code, notes, and snippets.

View aarifhsn's full-sized avatar
🎯
Focusing

Md. Arif Hassan aarifhsn

🎯
Focusing
View GitHub Profile
<?php query_posts('meta_key=post_views_count&orderby=meta_value_num&order=DESC&showposts=4'); ?>
<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>
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");
});
<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-->
<div id="sticker" class="mainmenu">
<?php wp_nav_menu( array( 'theme_location' => 'main-menu') ); ?>
</div> <!--end mainmenu-->