Do you want to add the sidebar to the front page of your WordPress website on your StudioPress Genesis theme on there? If you do you can then add this code to your functions.php file. You may want to backup your WordPress website before you make updates to it.
/** * Add sidebar to front page * * @author WPSnacks.com * @link https://www.wpsnacks.com */ function add_sidebar_to_front_page() { if ( is_home() ) { return 'content-sidebar'; } } add_filter( 'genesis_pre_get_option_site_layout', 'add_sidebar_to_front_page' );
Now if that works for you it would add the sidebar to the front page of your StudioPress Genesis theme on your WordPress website on there.