-
Notifications
You must be signed in to change notification settings - Fork 132
/
search.php
68 lines (41 loc) · 1.29 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* The template for displaying search results pages.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Astra
* @since 1.0.0
*/
get_header(); ?>
<?php if ( ast_page_layout() == 'left-sidebar' ) : ?>
<?php get_sidebar(); ?>
<?php endif ?>
<div id="primary" <?php ast_primary_class(); ?>>
<?php /* Archive Page info */
ast_archive_page_info();
?>
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<div class="ast-row">
<?php while ( have_posts() ) : the_post(); ?>
<?php ast_entry_before(); ?>
<article itemtype="http://schema.org/CreativeWork" itemscope="itemscope" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php ast_entry_top(); ?>
<?php ast_entry_content_blog(); ?>
<?php ast_entry_bottom(); ?>
</article><!-- #post-## -->
<?php ast_entry_after(); ?>
<?php endwhile; ?>
</div>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
<?php ast_pagination(); ?>
</div><!-- #primary -->
<?php if ( ast_page_layout() == 'right-sidebar' ) : ?>
<?php get_sidebar(); ?>
<?php endif ?>
<?php get_footer(); ?>