Skip to content

Instantly share code, notes, and snippets.

@krafit
Created December 2, 2015 12:38
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save krafit/73d956496e53697c2e50 to your computer and use it in GitHub Desktop.
Save krafit/73d956496e53697c2e50 to your computer and use it in GitHub Desktop.
Nachdem der Schmerz, den wpSEO-Menüpunkt ansehen zu müssen zu groß wurde, habe ich das Icon im Admin-Menü ersetzt.
if (function_exists(wpseo_autoload)) {
function krafit_repair_wpseo() {
?>
<style>
#adminmenu #toplevel_page_wpseo div.wp-menu-image img {
display: none;
}
#adminmenu #toplevel_page_wpseo div.wp-menu-image::before {
content: "\f511";
}
</style>
<?php
}
add_action( 'admin_head', 'krafit_repair_wpseo' );
}
@glueckpress
Copy link

Tut gut. 💐 Hab’s geforkt und in ein Plugin gewickelt: https://gist.github.com/glueckpress/596260cc2ce7ab9f9ac9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment