When:
October 1, 2020 all-day
2020-10-01T00:00:00-06:00
2020-10-02T00:00:00-06:00
The 2020 Area 1 meeting will be hosted by Daniels County CD. Visit our Area Meetings page for more info.
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' ); ?>
This Post Has 0 Comments