Return to Snippet

Revision: 11122
at March 18, 2009 06:28 by kristarella


Updated Code
function add_logo() {
   echo '<img id="logo-img" src="' . THESIS_CUSTOM_FOLDER . '/images/logo.png" alt="" />';
}
add_action('thesis_hook_before_title', 'add_logo', '9');

Revision: 11121
at January 25, 2009 19:02 by kristarella


Initial Code
function add_logo() {
   echo '<img id="logo-img" src="' . get_bloginfo('template_directory') . '/custom/images/logo.png" alt="" />';
}
add_action('thesis_hook_before_title', 'add_logo', '9');

Initial URL


Initial Description


Initial Title
Add logo to Thesis header

Initial Tags
wordpress

Initial Language
PHP