filter

jetpack_gravatar_full_profile_title

Filter the Gravatar Profile widget’s profile link title.

Parameters

$str
string

Profile link title.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

By default, the Gravatar Profile widget adds a “View Full Profile” link at the bottom of the widget. That link redirects to your Gravatar profile page. If you’d rather have a different text for that link, you can use the jetpack_gravatar_full_profile_title like so:
function jetpackme_developer_custom_gravatar_profile_title() {
    return 'Find out more about me!';
}
add_filter( 'jetpack_gravatar_full_profile_title', 'jetpackme_developer_custom_gravatar_profile_title' );