Sha256: c02dd9bdb2d19673e69b21bb5625af6c1330b7f37c5ae8a777cf104863b7b3da

Contents?: true

Size: 623 Bytes

Versions: 1

Compression:

Stored size: 623 Bytes

Contents

<?php
/**
 * The template for displaying Search Results pages.
 *
 * @category  Theme
 * @package   [bootstrap]
 * @author    [Your Name]
 * @copyright 2012 [Your Name]
 */

get_header();

if ( have_posts() ):
	?>
	<header class="page-header">
		<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'bootstrap' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
	</header>
	<?php
	/* Start the Loop */
	while ( have_posts() ):
		the_post();

		get_template_part( 'content', get_post_format() );
	endwhile;

	do_action( 'pagination' );
else:
	get_template_part( 'content', 'none' );
endif;

get_footer();

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wordpress-starter-0.3 templates/bootstrap/search.php