On March 24th, 2021 the MACD District Operations Committee met for discussion of topics including:
- Formation of a Communications Partnership and Outreach (CPO) Work Group
- Scholarship review
- Resolutions discussion
- Upcoming Training
- Reports on DNRC, MACD, EO etc. on Education Efforts
Full Meeting Minutes
Related Posts
On March 29st, 2021 the MACD Executive Committee met for discussion of topics including: Standing…
On March 1st, 2021 the MACD District Operations Committee met for discussion of topics including:…
On March 8th, 2021 the MACD Board met for discussion of topics including: NACD ResolutionsPartner…
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' ); ?>