MACD’s Annual Convention is the Association’s premier event for bringing together supervisors, employees, and partners from around the state to learn, share, and be inspired about the work districts are doing for conservation throughout Montana. The convention is held each year in November and the location changes from year to year.
Convention
php
function my_custom_sidebar_display( $sidebar ) {
// Return a different sidebar for custom post type 'resolutions'
if ( is_singular( 'resolutions' ) || is_post_type_archive( 'resolutions' ) ) {
return 'resolutionssidebar';
}
// Return theme defined sidebar area
else {
return $sidebar;
}
}
add_filter( 'wpex_get_sidebar', 'my_custom_sidebar_display' ); ?>