Created
June 11, 2014 18:01
-
-
Save omurphy27/10c5ff11a77fb3fa7e40 to your computer and use it in GitHub Desktop.
Wordpress functions file yoast WP seo score title - remove it.php
This file contains hidden or 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
// remove Yoast wp seo score title that's shown on the WP admin edit pages | |
add_action('admin_head', 'remove_wp_seo_score_title'); | |
function remove_wp_seo_score_title() { | |
echo '<style> | |
.misc-pub-section .wpseo-score-title { | |
display: none; | |
} | |
</style>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment