Skip to content

Instantly share code, notes, and snippets.

@patrickmj
Created June 1, 2012 20:16
Show Gist options
  • Save patrickmj/2854882 to your computer and use it in GitHub Desktop.
Save patrickmj/2854882 to your computer and use it in GitHub Desktop.
WP twentyeleven search form code
<?php
// Has the text been hidden?
if ( 'blank' == get_header_textcolor() ) :
?>
<div class="only-search<?php if ( ! empty( $header_image ) ) : ?> with-image<?php endif; ?>">
<?php get_search_form(); ?>
</div>
<?php
else :
?>
<?php get_search_form(); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment