'; $user_fb = get_the_author_meta('afc_facebook'); if($user_fb) { $output .= afc_fb_profile_button($user_fb); } $user_fb_page = get_the_author_meta('afc_facebook_page'); if($user_fb_page) { $output .= afc_fb_page_button($user_fb_page); } $user_tw = get_the_author_meta('afc_twitter'); if($user_tw) { $output .= afc_tw_profile_button($user_tw); } $user_gplus = get_the_author_meta('afc_gplus'); if($user_gplus) { $output .= afc_gplus_profile_button($user_gplus); } $user_linkedin = get_the_author_meta('afc_linkedin'); if($user_linkedin) { $output .= afc_linkedin_profile_button($user_linkedin); } $user_pinterest = get_the_author_meta('afc_pinterest' ); if($user_pinterest) { $output .= afc_pinterest_profile_button($user_pinterest); } $output .= ''; return $output; } function afc_fb_profile_button($user) { $output = ''; return $output; } function afc_fb_page_button($user) { $output = ''; return $output; } function afc_tw_profile_button($user) { $output = ''; return $output; } function afc_gplus_profile_button($user) { $output = ''; return $output; } function afc_linkedin_profile_button($user) { $output = ''; return $output; } function afc_pinterest_profile_button($user) { $output = ''; return $output; } ?>