Skip to content

Instantly share code, notes, and snippets.

@motorcitymobi
Created January 22, 2013 18:34
Show Gist options
  • Save motorcitymobi/4597021 to your computer and use it in GitHub Desktop.
Save motorcitymobi/4597021 to your computer and use it in GitHub Desktop.
Create a Custom Footer with HTML
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'child_footer_html' );
/**
* Custom Footer with HTML.
*
* @author Greg Rickaby
* @since 1.0.0
*/
function child_footer_html() { ?>
<div class="banner alignleft">
<!-- openx text/code here -->
</div>
<div class="creds">
<!-- credit text/code here -->
<div>
<?php }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment