Archived topic
Last Updated Gravatar Issue
3 replies · Started by Abhit on July 18, 2020
Hello GeneratePress Team,
I'm using the php code provided by you using plugininception but still my gravatar is not showing as you can see here please let me know how can I solve it...
Hi there,
what PHP are you using ?
function lh_page_hero_gravatar() {
ob_start();
global $post;
$author_id = $post->post_author;
?>
<?php
return ob_get_clean();
}
add_shortcode( 'page_hero_gravatar', 'lh_page_hero_gravatar' );
That code is for creating the Shortcode you're using in your Header Element.
See here to add the Avatar to the standard post meta :