Advertisement
verygoodplugins

Untitled

Nov 3rd, 2020
2,030
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function add_custom_meta_field_group( $field_groups ) {
  2.  
  3.     $field_groups['group_slug'] = array(
  4.         'title'  => 'Group Name',
  5.         'fields' => array(),
  6.     );
  7.  
  8.     return $field_groups;
  9.  
  10. }
  11.  
  12. add_filter( 'wpf_meta_field_groups', 'add_custom_meta_field_group' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement