Last active
September 17, 2015 18:14
-
-
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!
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
// 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