WordPress: Capturing Post Author Meta
An easy one here from your local Gainesville Web Designer: How to retreive the author information from a post in the WordPress loop. This assumes you’re in the loop, of course. $meta_field= get_the_author_meta( ‘your_meta’ ); Badda-bing badda-boom. You’re done. It really is that simple. Just use get_the_author_meta, the name of the meta source from …