Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omurphy27/10c5ff11a77fb3fa7e40 to your computer and use it in GitHub Desktop.
Save omurphy27/10c5ff11a77fb3fa7e40 to your computer and use it in GitHub Desktop.
Wordpress functions file yoast WP seo score title - remove it.php
// 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