userswp icon indicating copy to clipboard operation
userswp copied to clipboard

Doc request for ticket: 25877

Open Stiofan opened this issue 4 years ago • 1 comments

Documentation has been requested to help with ticket: https://secure.helpscout.net/conversation/1677650909/25877

Stiofan avatar Oct 29 '21 06:10 Stiofan

The following snippet will allow adding more social links custom fields to show on the social icons in the profile page:

add_filter('uwp_widget_button_group_args', 'uwp_widget_button_group_args_cb', 10, 1); function uwp_widget_button_group_args_cb($args){ if(isset($args['fields']) && !empty($args['fields'])){ $args['fields'] = 'facebook,twitter,instagram,linkedin,flickr,github,youtube,wordpress,tiktok'; }

return $args;

}

wpdev10 avatar Nov 24 '21 12:11 wpdev10