Skip to content

Instantly share code, notes, and snippets.

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 davechu/17100269e4ad223c6973 to your computer and use it in GitHub Desktop.
Save davechu/17100269e4ad223c6973 to your computer and use it in GitHub Desktop.
Genesis SEO settings do have some code that will disable parts of itself when it "sees" certain SEO plugins. I wanted to disable more, including a duplicate Meta Description tag (possibly a bug). I had also tried the command that simply shuts of all of Genesis SEO, but that knocked the page titles out of my theme!
// kill genesis meta description when using another SEO plugin. also remove genesis SEO metas from posts.
remove_action( 'genesis_meta','genesis_seo_meta_description' );
remove_action( 'admin_menu', 'genesis_add_inpost_seo_box' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment