How to display sticky post always at the top (before regular post) in wordpress?

I think you may need to add the feat_yes as a meta_key

$temp_args = [
    'post_type' => array('current-channel', 'post', 'current-episodes'),
    'post_status' => 'publish',
    'meta_key' => 'feat_yes',
    'orderby' => array(
        'meta_value_num' => 'ASC', /* or 'meta_value' */
        'post_type' => 'ASC',
        'modified' => 'DESC',
        'date' => 'DESC'),
    'posts_per_page' => $data->{"no_articles_" . ICL_LANGUAGE_CODE},
    'tax_query' => [
        [
            'taxonomy' => 'category',
            'field' => 'term_id',
            'terms' => $cat_today,
        ],
    ],

];
$q = new WP_Query($temp_args);

Here’s a few relevant links: