Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wp-seopress/efdc6953d36a2ad24346eabd413ea0dc to your computer and use it in GitHub Desktop.
Save wp-seopress/efdc6953d36a2ad24346eabd413ea0dc to your computer and use it in GitHub Desktop.
Filter the description of email notifications
add_filter('seopress_insights_email_alert_desc', 'sp_insights_email_alert_desc');
function sp_insights_email_alert_desc($desc) {
$desc = __('My custom description','text-domain');
return $desc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment