@ChrisxClash, @Jamy_za tried helping me out to no success at this time. I sent him my entire theme and what I'm using for my custom meta box (WPAlchemy).
@TheDoc, I thought it was my cache also but I completely cleared it several times.
@TheDoc No, it doesn't output anything if I remove the code. Although, when I was speaking with Jamy, he had me firebug it and it showed quotes in the markup but not in view source. I'll screenshot.
Glad you figured it out! Just a tip I always use when you get results like that (Array, Object, etc) is to use the trusty var_dump function in php. So in this case, if you would do var_dump($meta); it would have shown you that the array had a key of 'description' with your content in it. It's super helpful when you're not sure what's going on. (Works with any variable type, so use it anytime).
@TheDoc, I thought it was my cache also but I completely cleared it several times.
p.descriptionwith your text in it.All I need is help figuring out why it returns "Array" instead of the actual content.
Solution:
Thanks everyone for your help. I owe you one.
var_dumpfunction in php. So in this case, if you would dovar_dump($meta);it would have shown you that the array had a key of 'description' with your content in it. It's super helpful when you're not sure what's going on. (Works with any variable type, so use it anytime).Good luck!