File: /home/mmickelson/martyknows.com/wp-content/themes/bold-life/search.php
<?php
/**
* The template for displaying Search Results pages.
*
* @package WordPress
* @subpackage Bold_Life
*/
get_header(); ?>
<div class="post-wrapper">
<h2 class="archive-header">
<?php printf( __( 'Search Results for: “%s”', 'bold-life' ), '<span>' . get_search_query() . '</span>' ); ?>
</h2>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class( 'wide-entry-wrapper' ); ?>>
<?php // Only show dates on posts, not pages ?>
<?php if ( 'post' == get_post_type() ) { ?>
<div class="post-date-wrapper">
<div class="post-date">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'bold-life' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark">
<span><?php the_time( 'd' ); ?></span>
<?php the_time( 'M Y' ); ?>
</a>
</div><!-- .post-date -->
<?php // Only show comment bubbles when comments have been made
$comments_number = get_comments_number();
if ( 0 < $comments_number ) :
comments_popup_link(
__( 'Leave a Comment', 'bold-life' ),
_x( '<span>1</span> Comment', 'comments number', 'bold-life' ),
_x( '<span>%</span> Comments', 'comments number', 'bold-life' ),
'comment-left'
);
endif; ?>
</div><!-- .post-date-wrapper -->
<?php } ?>
<?php // Posts will need to be prepended with space because they will not show dates
if ( 'post' == get_post_type() )
echo '<div class="entry-wrapper">';
else
echo '<div class="page-entry-wrapper">';
?>
<div class="entry">
<div class="entry-inner">
<h2 class="post-title">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'bold-life' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2>
<?php
the_content( __( 'Read more…', 'bold-life' ) );
wp_link_pages( array( 'before' => '<div class="post-pages">' . __( 'Pages:', 'bold-life' ), 'after' => '</div>' ) );
?>
<?php if ( 'post' == get_post_type() ) { // Only show post meta information for posts ?>
<div class="post-meta">
<?php
$categories_list = get_the_category_list( __( ', ', 'bold-life' ) );
$tag_list = get_the_tag_list( '', __( ', ', 'bold-life' ) );
if ( is_multi_author() && $tag_list ) {
printf( __( 'Posted by %1$s in %2$s and tagged %3$s', 'bold-life' ), esc_html( get_the_author() ), $categories_list, $tag_list );
} elseif ( !is_multi_author() && $tag_list ) {
printf( __( 'Posted in %1$s and tagged %2$s', 'bold-life' ), $categories_list, $tag_list );
} elseif ( is_multi_author() ) {
printf( __( 'Posted by %1$s in %2$s', 'bold-life' ), esc_html( get_the_author() ), $categories_list );
} else {
printf( __( 'Posted in %1$s', 'bold-life' ), $categories_list );
}
if ( comments_open() && ( is_sticky() || 0 == $comments_number ) ) :
echo ' | ';
comments_popup_link(
__( 'Leave a Comment', 'bold-life' ),
_x( '<span>1</span> Comment', 'comments number', 'bold-life' ),
_x( '<span>%</span> Comments', 'comments number', 'bold-life' ),
'meta-comment-link'
);
endif; ?>
</div><!-- .post-meta -->
<?php } ?>
</div><!-- .entry-inner -->
</div><!-- .entry-wrapper -->
</div><!-- .wide-entry-wrapper -->
</div><!-- #post-<?php the_ID(); ?> -->
<?php endwhile; ?>
<div id="post-navigation">
<h3 class="screen-reader-text">
<?php _e( 'Post Navigation', 'bold-life' ); ?>
</h3>
<div class="nav-previous">
<?php next_posts_link( __( '<span class="meta-nav">←</span> Older Entries', 'bold-life' ) ); ?>
</div><!-- .nav-previous -->
<div class="nav-next">
<?php previous_posts_link( __( 'Newer Entries <span class="meta-nav">→</span>', 'bold-life' ) ); ?>
</div><!-- .nav-next -->
</div><!-- #post-navigation -->
<?php else : ?>
<div id="post-0" class="no-results-wrapper">
<div class="entry">
<div class="entry-inner">
<h2>
<?php _e( 'Not Found', 'bold-life' ); ?>
</h2>
<p>
<?php get_search_form(); ?>
</p>
<p>
<?php _e( 'Sorry, but your search came up empty. Please try different terms or use the site-wide navigation or sidebar to find what you are looking for.', 'bold-life' ); ?>
</p>
</div><!-- .entry-inner -->
</div><!-- .entry -->
</div><!-- #post-0 -->
<?php endif; ?>
</div><!-- .post-wrapper -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>