function exclude_category( $query ) {
if($_SERVER["REQUEST_URI"] == '/hosting/wp-content/themes/Mukach/feed.php') {
$tyt = true;
}
if ( $tyt == true && $query->is_main_query() ) {
$query->set('tag_id' , '11');
$query->set ('author', '1');
}
}
add_action( 'pre_get_posts', 'exclude_category' );