Not Getting Sidebar
Your sidebars will not work the way you are calling them. <?php get_sidebar(); ?> calls the template sidebar.php, while <?php get_sidebar( ‘responsive’ ); ?> calls the template sidebar-responsive.php To call your two sidebars in a template, you will need to use dynamic_sidebar() to call them as per example <?php if ( is_active_sidebar( ‘responsive’ ) ) … Read more