$get_categories = get_categories($args_cat);
if ($get_categories) {
foreach ($get_categories as $get_cat) {
$get_cat_id = $get_cat-> term_id;
$cat_data = get_option("category_$get_cat_id");
$cat_seo_title=$cat_data_['cat_seo_title'];
echo $cat_seo_title;
}
}