Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created January 5, 2019 14:40
Show Gist options
  • Save Musilda/7e9cf629a6d9874ebabf20fb050fa3e4 to your computer and use it in GitHub Desktop.
Save Musilda/7e9cf629a6d9874ebabf20fb050fa3e4 to your computer and use it in GitHub Desktop.
<?php get_header(); ?>
<div id="primary" class="content-area col-8">
<main id="main" class="site-main" role="main">
<?php if (have_posts()) : ?>
<h1 class="archive-title"><?php printf( __( 'Search Results for: "%s"', 'theme' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<h2 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</header>
<div class="post-content">
<?php echo the_excerpt();?>
</div>
</div>
<?php
endwhile;
?>
<!--BEGIN .navigation -->
<div class="navigation">
<?php posts_nav_link( '', __('Previous page','theme'), __('Next page','theme') ); ?>
</div>
<?php
else:
?>
<div id="post-0" class="post error404 not-found">
<header>
<h1 class="entry-title"><?php _e( 'Not Found', 'theme' ); ?></h1>
</header>
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'theme' ); ?></p>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
<?php endif; ?>
</main>
</div>
<div class="col-4">
<?php get_sidebar(); ?>
</div>
<?php get_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment