Skip to content

Instantly share code, notes, and snippets.

@psteinweber
Last active January 3, 2016 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psteinweber/8502698 to your computer and use it in GitHub Desktop.
Save psteinweber/8502698 to your computer and use it in GitHub Desktop.
#wordpress #thesis Custom header logo
/* ==========================================================================
Custom header logo
========================================================================== */
function custom_header() { ?>
<a href="/"><img src="/media/image.jpg" alt="alt text"></a>
<?php
}
remove_action('thesis_hook_header', 'thesis_default_header');
add_action('thesis_hook_header', 'custom_header');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment