Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function gs_author_fb()
  2. {
  3. $authorfirst = get_the_author_meta('first_name');
  4. $authorlast = get_the_author_meta('last_name');
  5. echo  '<meta name="author" content="'. $authorfirst . " " . $authorlast .'" />';
  6. }
  7.  
  8. add_action('wp_head','gs_author_fb');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement