Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function add_custom_meta_field_group( $field_groups ) {
- $field_groups['group_slug'] = array(
- 'title' => 'Group Name',
- 'fields' => array(),
- );
- return $field_groups;
- }
- add_filter( 'wpf_meta_field_groups', 'add_custom_meta_field_group' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement