Flip position of site title and description in Genesis

You wouldn’t think this would be so hard to find, but it seems nobody has written how to put the site description above the site title in Genesis. Or my google-fu is exceptionally weak today. In any case, it’s actually quite easy, and this is a whole lot safer than mucking about with CSS positioning:


// 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' );

You’re welcome.

2 Comments

  1. Yves on May 7, 2015 at 11:18 am

    Very helpful,thank you Dave!



  2. Dave Kuhar on May 7, 2015 at 12:24 pm

    Glad to help!