Advertisement
Guest User

Untitled

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