Skip to content

Instantly share code, notes, and snippets.

@aaronhartland
Created August 7, 2012 19:26
Show Gist options
  • Save aaronhartland/3288619 to your computer and use it in GitHub Desktop.
Save aaronhartland/3288619 to your computer and use it in GitHub Desktop.
genesis footer nav
<?php
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'ah_custom_do_footer' );
function ah_custom_do_footer() {
$creds = 'Copyright &copy; '. date('Y') . ' ' . get_bloginfo('name') . ' . All rights reserved.';
$footernav = wp_nav_menu( array('menu' => 'Footer' ));
echo $footernav;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment