mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://github.com/strangerstudios/pmpro-snippets-library/blob/dev/frontend-pages/show-gravatar-on-account-page
10 lines
634 B
Text
10 lines
634 B
Text
function show_gravatar_pmpro_account_bullets_top() {
|
|
global $current_user;
|
|
echo '<li class="alignright" style="display: inline-block; list-style: none; margin: -5rem 0 0 0;">' . get_avatar( $current_user->ID, 160 ) . '</li>';
|
|
}
|
|
add_action( 'pmpro_account_bullets_top', 'show_gravatar_pmpro_account_bullets_top' );
|
|
|
|
function show_gravatar_pmpro_account_bullets_bottom() {
|
|
echo '<li><strong>' . __( 'Avatar', 'pmpro' ) . ':</strong> <a href="http://gravatar.com/" target="_blank">' . __( 'Update at Gravatar.com', 'pmpro' ) . '</a></li>';
|
|
}
|
|
add_action( 'pmpro_account_bullets_bottom', 'show_gravatar_pmpro_account_bullets_bottom' );
|