Skip to content

Instantly share code, notes, and snippets.

@bryanwillis
Forked from srikat/functions.php
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save bryanwillis/19abe3b18c2618ed3318 to your computer and use it in GitHub Desktop.

Select an option

Save bryanwillis/19abe3b18c2618ed3318 to your computer and use it in GitHub Desktop.
//* Reposition the footer widgets
remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
add_action( 'genesis_after', 'genesis_footer_widget_areas' );
//* Reposition the footer
remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 );
remove_action( 'genesis_footer', 'genesis_do_footer' );
remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );
add_action( 'genesis_after', 'genesis_footer_markup_open', 11 );
add_action( 'genesis_after', 'genesis_do_footer', 12 );
add_action( 'genesis_after', 'genesis_footer_markup_close', 13 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment