Timesheet

[insert_php]
$current_user = wp_get_current_user();
if ( !($current_user instanceof WP_User) )
return;
echo “

“.$current_user->user_login.”

“.PHP_EOL;
$user_id = $current_user->ID; // You can set $user_id to any users, but this gets the current users ID.
$website = get_user_meta( $user_id, ‘description’, true);
echo “Job Title :”.$website.PHP_EOL;
//$all_meta_for_user = get_user_meta($user_id);
//print_r( $all_meta_for_user );
[/insert_php]
Click here for administration panel
[dynamicTime]