Action taken by MACD: The Gilly platform was presented at the 2022 Annual Convention. More information will be available at the 2023 Convention, and additional information has been available in the interim. This is a nonprofit organization, and the decision to use this particular platform or an alternative platform will be up to individual districts.
Resolutions
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' ); ?>