Skip to content

Instantly share code, notes, and snippets.

@msaari
Created April 9, 2020 12:32
Show Gist options
  • Select an option

  • Save msaari/bcf94188836c035226ebb60da29bb34d to your computer and use it in GitHub Desktop.

Select an option

Save msaari/bcf94188836c035226ebb60da29bb34d to your computer and use it in GitHub Desktop.
Dokan search template
<?php
/**
* The template for displaying Search Results pages.
*
* @package dokan
* @package dokan - 2014 1.0
*/
get_header();
?>
<section id="primary" class="content-area col-md-9">
<div id="content" class="site-content" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'dokan-theme' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</header><!-- .page-header -->
<?php /* Start the Loop */ ?>
<?php while (have_posts()) : the_post(); ?>
<?php switch_to_blog( $post->blog_id ); ?>
<?php get_template_part( 'content', 'search' ); ?>
<?php restore_current_blog(); ?>
<?php endwhile; ?>
<?php dokan_content_nav( 'nav-below' ); ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'search' ); ?>
<?php endif; ?>
</div><!-- #content .site-content -->
</section><!-- #primary .content-area -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment