verygoodplugins

Untitled

Jan 18th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function add_capabilities_field( $meta_fields ) {
  2.  
  3.     $meta_fields['wp_capabilities'] = array( 'label' => 'Capabilities', 'type' => 'multiselect', 'group' => 'wordpress' );
  4.  
  5.     return $meta_fields;
  6.  
  7. }
  8.  
  9. add_filter( 'wpf_meta_fields', 'add_capabilities_field', 80 );
Add Comment
Please, Sign In to add comment