You appear to be a bot. Output may be restricted
Description
Return the user meta data for user $ID and key $key
Usage
$string = bw_get_user_meta( $ID, $key );
Parameters
- $ID
- ( integer ) required – User ID of the user
- $key
- ( string ) optional default: bw_options – field name. Note: This could be a serialized array
Returns
string $user_meta – NOT deserialisedSource
File name: oik-user/admin/oik-user.phpLines:
1 to 5 of 5
function bw_get_user_meta( $ID, $key="bw_options" ) { $user_meta = get_user_meta( $ID, $key, true ); bw_trace2( $user_meta, "user_meta" ); return( $user_meta ); }View on GitHub