Show all (add) social icons on author box

Hello everybody!

I’ve added the author field below post content by adding the following code to functions.php file in my child theme:

add_filter( 'the_content', 'custom_author_code');

function custom_author_code($content) {
   if ( is_single() ) {
      return $content . do_shortcode('[author title="Über den Author"]');
   } else {
      return $content;
   }
}

It looks quite good, but there are only Facebook and Twitter icon displayed at frontend:

Is it also possible to display all social icons including an webpage link at frontend? The fields in backend author options are filled with links, but i can’t see them in frontend.

Here is the link to a single blog post page:

Thanks in advance for support!
best regards, Oliver

Hi Oliver,

Thanks for reaching out.

Those aren’t part of the author shortcode, or the theme/builder itself. Those in your screenshot are probably from other plugins. The theme only uses twitter, facebook, and google plus for the author profile/shortcode. You can integrate those other fields to the shortcode but it will require custom development as I myself isn’t sure how those other fields are added there. It may have different naming than the theme uses. I recommend contacting a developer for proper integration with those fields to the shortcode.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.