Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/a1af2095d7e84778234f82ccad94d470 to your computer and use it in GitHub Desktop.
Save wp-seopress/a1af2095d7e84778234f82ccad94d470 to your computer and use it in GitHub Desktop.
Change / remove SEOPress icon in admin bar
function sp_adminbar_icon($html) {
$html = 'SEO';
return $html;
}
add_filter('seopress_adminbar_icon', 'sp_adminbar_icon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment