How to load wordpress sidebar using AJAX -


i using responsive design on website. fine except fact on mobile phone, website long. there content mobile screen - vertical space gets taken sidebar contains lot of widgets popular posts , recent comments , many others. make website smaller, want sidebar not load @ if viewed small screen. , don't want apply display:hidden sidebar container. stupid.

so efficient way load sidebar using ajax , exclude if viewport less 800px wide.

could please tell me if possible? if can done please give examples , links tutorials. have googled lot found 1 tutorial think not enough want learn several examples.

you can use wordpress function wp_is_mobile() in theme, so

<?php if( !wp_is_mobile() ) get_sidebar(); ?> 

Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -