Skip to content

Instantly share code, notes, and snippets.

@wolfthemes
Created December 12, 2017 10:08
Show Gist options
  • Select an option

  • Save wolfthemes/16942cf6e2b3111408ff64296957aa4e to your computer and use it in GitHub Desktop.

Select an option

Save wolfthemes/16942cf6e2b3111408ff64296957aa4e to your computer and use it in GitHub Desktop.
Add social network to Wolf WPBakery Page Builder extension
/**
* Add social networks
*/
function add_social_networks( $socials ) {
$socials[] = 'wechat';
$socials[] = 'weibo';
return $socials;
}
add_filter( 'wvc_socials', 'add_social_networks' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment