If you want to show a single category on your homepage, just copy the code below and add to your functions.php. The code can be adapted for multiple categories as well, just separate each category ID with a comma.
/** Filter frontpage posts by category
* Change 6 to your Featured category ID, if you want to show multiple categories just use a comma to separate the category IDs
* @link http://www.khleomix.com/genesis-filter-frontpage-posts-by-category/
* @author JC Mae Palmes
*/
function filter_home_category( $query ) {
if( $query->is_main_query() && !is_admin() && $query->is_home() )
$query->set( 'cat', '6' );
}
add_action( 'pre_get_posts', 'filter_home_category' );


Connect With Me