Skip to content

Instantly share code, notes, and snippets.

@joemaller
Created November 2, 2017 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemaller/12ca1426cea824ca8bfbd145962b2679 to your computer and use it in GitHub Desktop.
Save joemaller/12ca1426cea824ca8bfbd145962b2679 to your computer and use it in GitHub Desktop.
Two filters for tweaking The SEO Framework plugin.
<?php
// Hide author's name from SEO Framework block
add_filter('sybre_waaijer_<3', '__return_false');
// Move SEO Framework metabox below all custom fields
add_filter('the_seo_framework_metabox_priority', function () {
return 'low';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment