Skip to content

Instantly share code, notes, and snippets.

@pmgllc
Created February 28, 2013 18:53
Show Gist options
  • Select an option

  • Save pmgllc/5059139 to your computer and use it in GitHub Desktop.

Select an option

Save pmgllc/5059139 to your computer and use it in GitHub Desktop.
Genesis reposition code not working?
// 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', 5);
add_action('genesis_after', 'genesis_do_footer');
add_action('genesis_after', 'genesis_footer_markup_close', 15);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment