Aurangajeb

Add custom field on the dokan social section

Aug 14th, 2021 (edited)
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_filter( 'dokan_profile_social_fields', function($fields) {
  2.     $fields['website'] = array(
  3.             'icon'  => 'globe',
  4.             'title' => __( 'Your Text', 'dokan-lite' ),
  5.         );
  6.     return $fields;
  7. } );
Add Comment
Please, Sign In to add comment