Future Nutrient Work Group Meetings
January 12, 2022 @ 9:00 AM - 11:00 AM
|Recurring Event (See all)
Beginning in January, meetings will be held from 9 to 11 a.m. the second and fourth Wednesday of each month through May 2022.
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' ); ?>

