Created
June 3, 2013 18:47
-
-
Save bradp/5700337 to your computer and use it in GitHub Desktop.
Removes Yoast SEO advertisment images in the WordPress dashboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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