woocommerce user meta code example
Example 1: wp get user meta
<?php
$meta_data = get_user_meta($user_id, $key, $single);
?>
Example 2: get_user_meta
global $current_user;
get_currentuserinfo();
if ( $current_user ) {
$permission = get_user_meta( $current_user->ID, 'some_meta' , true );
if ( ! empty( $permission ) ) {
// do stuff
}
}
// works for both array and single values