ok, final i can do it. I wirte code in my funtion.php
Funtions.php
function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( ‘cat’, ‘-9 );
// -9 is my ID Catalogie i want to hide content at homepage
}
return $query;
}
add_filter( ‘pre_get_posts’, ‘exclude_category_home’ );
thanks all! regard