Please find below code to get default post category
$args = array(
‘type’ => ‘post’,
‘hide_empty’ => 0
);
$categories = get_categories( $args );
echo $default_category = get_option(‘default_category’);
Please find below code to get default post category
$args = array(
‘type’ => ‘post’,
‘hide_empty’ => 0
);
$categories = get_categories( $args );
echo $default_category = get_option(‘default_category’);