Advertisement
Guest User

header code

a guest
Feb 16th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <div id="header_meta">
  2.  
  3. <?php if ($options['header_search']) : ?>
  4. <div id="search-area"<?php if (!$options['header_rss']&&!$options['header_twitter']) : echo ' style="margin-right:0;"'; endif; ?>>
  5. <?php if ($options['use_google_search']) : ?>
  6. <form action="http://www.google.com/cse" method="get" id="searchform">
  7. <div><input type="text" value="<?php _e('Google Search','piano-black'); ?>" name="q" id="search-input" onfocus="this.value=''; changefc('white');" /></div>
  8. <div>
  9. <input type="image" src="<?php bloginfo('template_url'); ?>/img/search-button.gif" name="sa" alt="<?php _e('Search from this blog.','piano-black'); ?>" title="<?php _e('Search from this blog.','piano-black'); ?>" id="search-button" />
  10. <input type="hidden" name="cx" value="<?php echo $options['custom_search_id']; ?>" />
  11. <input type="hidden" name="ie" value="UTF-8" />
  12. </div>
  13. </form>
  14. <?php else: ?>
  15. <form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
  16. <div><input type="text" value="<?php _e('Search','piano-black'); ?>" name="s" id="search-input" onfocus="this.value=''; changefc('white');" /></div>
  17. <div><input type="image" src="<?php bloginfo('template_url'); ?>/img/search-button.gif" alt="<?php _e('Search from this blog.','piano-black'); ?>" title="<?php _e('Search from this blog.','piano-black'); ?>" id="search-button" /></div>
  18. </form>
  19. <?php endif; ?>
  20. </div>
  21. <?php endif; ?>
  22.  
  23. <?php if ($options['header_rss']) : ?>
  24. <a href="<?php bloginfo('rss2_url'); ?>" id="rss-feed" title="<?php _e('Entries RSS','piano-black'); ?>" ><?php _e('RSS','piano-black'); ?></a>
  25. <?php endif; ?>
  26. <?php if ($options['header_twitter']) : ?>
  27. <a href="<?php echo $options['twitter_url']; ?>" id="twitter" title="<?php _e('Twitter','piano-black'); ?>" ><?php _e('Twitter','piano-black'); ?></a>
  28. <?php endif; ?>
  29. </div><!-- #header_meta end -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement