How do I add Genesis sidebar support to WP Courseware?
To add Genesis layout support to WP Courseware units:
Add the following code snippet to your functions.php file
add_action('init', 'genesis_sidebar_support'); function genesis_sidebar_support() { add_post_type_support( 'course_unit', 'genesis-simple-sidebars' ); }