function test_blogtitle() { ?>
<div id="blog-title">/" title="<?php bloginfo('name') ?>" rel="home"><img src="<?php bloginfo('template_directory'); ?>/img/test_1.jpg" alt="<?php bloginfo('name') ?>" title="<?php bloginfo('name') ?>" /></div>
<?php }
function remove_title_desc() {
remove_action('thematic_header','thematic_blogtitle',3);
remove_action('thematic_header','thematic_blogdescription',5);
}
add_action('init', 'remove_title_desc');
add_action('thematic_header','test_blogtitle',3);
It works just fine in general. It just puts the wrong template_directory in the link. How to make it link to my child template?
Thanks already!