Advertisement
srikat

Untitled

May 16th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php
  2.  
  3. add_action('wp_head', 'remove_cyberchimps_banner');
  4.  
  5. function remove_cyberchimps_banner() {
  6.     remove_action( 'cyberchimps_banner', 'cyberchimps_banner_content' );
  7. }
  8.  
  9.  
  10. function my_cyberchimps_banner_content() {
  11.  
  12.     $url = cyberchimps_get_option( 'header_banner_url' );
  13. ?>
  14.     <header id="cc-header" class="row-fluid">
  15.         <div id="banner">
  16.             <a href="<?php echo $url; ?>"><img src="http://www.placehold.it/980x120" alt="logo"></a>
  17.         </div>
  18.     </header>
  19. <?php
  20. }
  21.  
  22. add_action( 'cyberchimps_banner', 'my_cyberchimps_banner_content' );
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement