Skip to content

Instantly share code, notes, and snippets.

@cristianstan
Created April 12, 2014 09:58
Show Gist options
  • Select an option

  • Save cristianstan/10527821 to your computer and use it in GitHub Desktop.

Select an option

Save cristianstan/10527821 to your computer and use it in GitHub Desktop.
Wordpress: Get author meta
<?php
//GET AUTHOR ID
$authorID = get_the_author_meta('ID');
// GET "fax" meta
echo get_the_author_meta('fax', $authorID, true); ?>
or
the_author_meta('fax');
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment