I am using a plugin called ‘Taxonomies Filter’ and the results display on the archive page. Currently the default sidebar for this page is ‘displayed everywhere’. how do i assign the archive page a custom sidebar.
Thank you!
Actually the archive paages should display the widgets of the “Sidebar Blog” area too. I’d use this area to add the widgets to the archive page. If you want to hide the ‘displayed everywhere’ area on the archive page open up sidebar.php and replace
if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;
with
if (dynamic_sidebar('Displayed Everywhere') && !is_archive()) : $default_sidebar = false; endif;