Filter the Gravatar Profile widget’s profile link title.
Parameters
- $str
string Profile link title.
Changelog
- Introduced in Jetpack 2.8.0
How to use this hook
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 thejetpack_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' );