Skip to content

Instantly share code, notes, and snippets.

@alenabdula
Last active February 27, 2017 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alenabdula/c67cb6672638cbd8ba103e19ee842953 to your computer and use it in GitHub Desktop.
Save alenabdula/c67cb6672638cbd8ba103e19ee842953 to your computer and use it in GitHub Desktop.
<?php
/**
* Get User Metadata.
*/
$user_id = wp_get_current_user()->ID;
$user_data = get_user_meta($user_id);
var_dump($user_data);
/*
* HTML structure for custom WordPress user data!
*
<h2>Section Heading</h2>
<table class="form-table">
<tbody>
<tr>
<th>
<label for=""></label>
</th>
<td>
<input type="text" id="" name="">
<p class="description"></p>
</td>
</tr>
</tbody>
</table>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment