Skip to content

Instantly share code, notes, and snippets.

@gmmedia
Last active March 11, 2023 10:03
Show Gist options
  • Save gmmedia/f33138cec516150b84fa35b9e34fbce7 to your computer and use it in GitHub Desktop.
Save gmmedia/f33138cec516150b84fa35b9e34fbce7 to your computer and use it in GitHub Desktop.
Yoast SEO Score column fix
<?php
// Yoast SEO Score column fix
add_action('admin_head', 'bloggerpilot_fix_yoast_score_column');
function bloggerpilot_fix_yoast_score_column() {
echo '<style>#wpseo-score {float: unset;margin: unset;}</style>';
echo '<style>.column-ppc_checklist{width: 12%;}</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment