Custom Sidebars for Categories
Trying to creat custom sidebars for each category. In my case that is a city - so I can have advertising specific to that area in the sidebar. Tried lots of plugins and none work except Content Aware and that caused other problems. Trying to code myself.
I know it would be something along these lines in the archive-listing.php file.
Code:
<?php
if ( is_tax( VA_LISTING_CATEGORY, 'columbus' ) ) {
get_sidebar( 'columbus' );
} and if ( is_tax (VA_LISTING_CATEGORY, 'toledo' ) ) {
get_sidebar( 'toledo' );
} else {
get_sidebar( app_template_base() );
}
?>
I added the sidebars easily - just dont know how to do this. Any help would be greatly apprecaited!
Thanks