Advertisement
verygoodplugins

Untitled

Oct 16th, 2017
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function add_completeness_meta_field( $meta_fields ) {
  2.  
  3.     $meta_fields['_completed'] = array( 'label' => 'UM Profile Completeness', 'type' => 'text' );
  4.     return $meta_fields;
  5.  
  6. }
  7.  
  8. add_filter( 'wpf_meta_fields', 'add_completeness_meta_field' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement