Skip to content

Instantly share code, notes, and snippets.

@davekuhar
Last active February 22, 2019 19:52
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 davekuhar/611b285816b2824734a5 to your computer and use it in GitHub Desktop.
Save davekuhar/611b285816b2824734a5 to your computer and use it in GitHub Desktop.
Flip position of site title and site description in Genesis
// flip the positions of the site title and site description
remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
add_action( 'genesis_site_title', 'genesis_seo_site_description' );
add_action( 'genesis_site_description', 'genesis_seo_site_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment