Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created November 10, 2015 16:38
Show Gist options
  • Save strangerstudios/b61ceebb01416e37120b to your computer and use it in GitHub Desktop.
Save strangerstudios/b61ceebb01416e37120b to your computer and use it in GitHub Desktop.
Display a member's gravatar and a link to update at Gravatar on the Membership Account page "Profile" section.
<?php
function my_pmpro_account_bullets_top_avatar()
{
global $current_user;
echo '<li class="alignright" style="display: inline-block; list-style: none; margin: -5rem 0 0 0;">' . get_avatar($current_user->ID, 200) . '</li>';
}
add_action("pmpro_account_bullets_top","my_pmpro_account_bullets_top_avatar");
function my_pmpro_account_bullets_bottom_avatar()
{
global $current_user;
echo '<li><strong>' . __('Avatar','wp') . ':</strong> <a href="http://gravatar.com/" target="_blank">' . __('Update at Gravatar.com','pmpro') . '</a></li>';
}
add_action("pmpro_account_bullets_bottom","my_pmpro_account_bullets_bottom_avatar");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment