WordPress save meta data : Displaying the word Array when selected

So yes, the problem is not with the saving, it’s how you load the saved data back… See the documentation for get_post_meta: if you dont’ provide a meta data key, the function returns all meta data for that post – which has to be returned as an array. Try this instead:

$littlereds_storedMeta = get_post_meta($post->ID, 'catagory', true);

Note the last parameter “true” which will force the function to return a single value instead of, again, an array.

Hope this helps!