The Executive Committee met on January 25th via Zoom. Topics discussed during the meeting included:
- Relevant resolutions coming up at the NACD Annual Committee Meeting
- MACD Resolutions
- New committee members and chair
- Agenda for next full Board Meeting
Read the full minutes here: ExecutiveCommMinutes_1_25_2021
Related Posts
The Soil & Land Use Standing Committee met on February 12th, 2021 via Zoom. Topics…
The Executive Committee met on January 25th via Zoom. Topics discussed during the meeting included:…
The Legislative Ad Hoc Committee met on January 26th, 2021. Topics discussed during the meeting…
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' ); ?>