Meagher County Conservation District
When:
December 10, 2018 @ 1:00 pm
2018-12-10T13:00:00-01:00
2018-12-10T18:45:00-01:00
Where:
USDA Building White Sulphur Springs
White Sulphur Springs
WV 24986
USA
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' ); ?>