Skip to content

Instantly share code, notes, and snippets.

@bradp
Created June 3, 2013 18:47
Show Gist options
  • Save bradp/5700337 to your computer and use it in GitHub Desktop.
Save bradp/5700337 to your computer and use it in GitHub Desktop.
Removes Yoast SEO advertisment images in the WordPress dashboard
function wolf_admin_styles() {
echo '<style type="text/css">
a[href*="yoast.com"] img{ display: none; }
</style>';
}
add_action('admin_head', 'wolf_admin_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment