在子主题中覆盖插件中apply_filters函数

在wordpress插件中有有段社交图标的调用,原代码如下

public static function extra_fields()
    {
        $extra_fields = array(
                'facebook' => array(
                        'label' => esc_html__('Facebook', 'stm'),
                        'icon' => 'facebook-f',
                ),
                'twitter' => array(
                        'label' => esc_html__('Twitter', 'stm'),
                        'icon' => 'twitter',
                ),

        return apply_filters('stm_extra_user_fields', $extra_fields);
    }
】 

计划想在子主题functions中新增以下社交的调用
【 'google-plus' => array(
'label' => esc_html__('Google Plus', 'masterstudy-lms-learning-management-system'),
'icon' => 'google-plus-g',
),

求各位大大帮忙