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/c3aa64c620a710c928234e3320c4f134 to your computer and use it in GitHub Desktop.
Save wp-seopress/c3aa64c620a710c928234e3320c4f134 to your computer and use it in GitHub Desktop.
Filter the CSS of email notifications
add_filter('seopress_insights_email_alert_css', 'sp_insights_email_alert_css');
function sp_insights_email_alert_css($css) {
$css = '<style>#wrapper {background: red}</style>';
return $css;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment