No, that’s not for posts but for pages.
You should be able to by adding this to your functions.php file
function myprefix_init() {
add_post_type_support( 'post', 'simple-page-sidebars' );
}
add_action( 'init', 'myprefix_init' );
Thank you, thank you! This is EXACTLY what I needed!! 🙂