function myprefix_add_new_social_widget_settings( $list ) {
// Add IMDb to options - the key must be the prefix for a FontAwesome Icon
// More info: http://fontawesome.io/icons/
$list['imdb'] = array(
'name' => 'IMDb',
'url' => ''
);
// Return list of options
return $list;
}
add_action( 'wpex_social_widget_profiles', 'myprefix_add_new_social_widget_settings' );