Thesis: Custom Header Logo


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /*--------------------------------------------------*/
  2. /* header logo */
  3. /*--------------------------------------------------*/
  4.  
  5. function custom_header() { ?>
  6. <a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo('url'); ?>/wp/wp-content/themes/thesis_18/custom/images/image.jpg" alt="alt text"></a>
  7. <?php
  8. }
  9.  
  10. remove_action('thesis_hook_header', 'thesis_default_header');
  11. add_action('thesis_hook_header', 'custom_header');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.