Advertisement
verygoodplugins

Untitled

Aug 16th, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function prepare_meta_fields( $meta_fields ) {
  2.  
  3.     $meta_fields['field_key'] = array( 'label' => 'Field Label', 'type'  => 'text', 'group' => 'wordpress');
  4.  
  5.     unset( $meta_fields['unwanted_key'] );
  6.  
  7.     return $meta_fields;
  8.  
  9. }
  10.  
  11.  
  12. add_filter( 'wpf_meta_fields', 'prepare_meta_fields' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement