Created
April 9, 2020 12:32
-
-
Save msaari/bcf94188836c035226ebb60da29bb34d to your computer and use it in GitHub Desktop.
Dokan search template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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