Support MB Custom Table How to get user meta from custom table? Reply To: How to get user meta from custom table?

#11539
todd m youngtodd m young
Participant

Excellent, thank you.
Some users may be interested in my little function:

function mb_customtable_getRow($object_id, $table_name){
    $ra =  MB_Custom_Table_Cache::get( $object_id, $table_name );   
    foreach($ra as $k=>$v){
        $newra[$k] = maybe_unserialize( $v );//this is a wp func.
    }
    return $newra;
}