Skip to content

Instantly share code, notes, and snippets.

@bnecreative
Last active October 15, 2018 15:25
Show Gist options
  • Save bnecreative/f1cf587d4e989969b9ddbc0d41539ea4 to your computer and use it in GitHub Desktop.
Save bnecreative/f1cf587d4e989969b9ddbc0d41539ea4 to your computer and use it in GitHub Desktop.
Sweetness Dev - bne_social_media_sources
<?php // don't copy this line
/*
* Filter to allow altering the available social
* media profiles as defined in Theme Options
*/
function my_social_media_sources( $sources ) {
// Expanded Example available since v1.5.16
$sources['steam'] = array(
'id' => 'steam',
'label' => 'Steam Network',
'image' => '',
'fa_icon' => 'steam',
'fa_style' => 'fab',
'fa_color' => '#000'
);
return $sources;
}
add_filter('bne_social_media_sources', 'my_social_media_sources' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment