Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anoopranawat/f950e242bad87f51e1df51693fcbb426 to your computer and use it in GitHub Desktop.
Save anoopranawat/f950e242bad87f51e1df51693fcbb426 to your computer and use it in GitHub Desktop.
PowerPack - Team Showcase Extra Social Service
<?php
/**
* Filter to add extra social service to Team Showcase
*/
function pwpc_ts_add_social_scrvices( $services_arr ) {
$services_arr['phone'] = array(
'name' => __('Phone', 'pwpc'),
'desc' => __('Enter phone number.', 'pwpc'),
'icon' => 'fa fa-phone'
);
return $services_arr;
}
add_filter( 'pwpc_ts_social_scrvices', 'pwpc_ts_add_social_scrvices' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment