Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created November 4, 2015 06:36
Show Gist options
  • Save farookibrahim/f1c833de0c0d33163737 to your computer and use it in GitHub Desktop.
Save farookibrahim/f1c833de0c0d33163737 to your computer and use it in GitHub Desktop.
Custom Footer Logo for Bethlehem
if ( ! function_exists( 'bethlehem_footer_logo' ) ) {
function bethlehem_footer_logo() {
$site_logo = '<img src="" class="img-responsive" alt="logo"/>';
echo sprintf( '<div class="footer-logo"><div class="site-branding"><a href="%s" rel="home">%s</a></div></div>', esc_url( home_url( '/' ) ), $site_logo );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment