Skip to main content

Posts

Showing posts from January, 2018

dd function

/*****for printing array values starts here****/ function dd($val, $die = ""){     echo "<pre>";         print_r($val);     echo "</pre>";     if($die == ""){         die();     } } /*****for printing array values ends here****/

It is for displaying and updating the custom user meta data.

// Hooks near the bottom of profile page (if current user) add_action('show_user_profile', 'custom_user_profile_fields'); // Hooks near the bottom of the profile page (if not current user) add_action('edit_user_profile', 'custom_user_profile_fields'); // @param WP_User $user function custom_user_profile_fields( $user ) { ?>     <table class="form-table">         <tr>             <th>                 <label for="code"><?php _e( 'App Store Link to VR App' ); ?></label>             </th>             <td>                 <input type="text" name="user_app_store_link" id="user_app...