forked from HUiTHEME/Mango
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
24 lines (24 loc) · 865 Bytes
/
Copy pathsearch.php
File metadata and controls
24 lines (24 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php get_header(); ?>
<section class="index_area">
<div class="container">
<div class="row g-4">
<div class="col-lg-8">
<div class="catbox">
<div class="cat_head">
<div class="cat_head_r">
<h2 class="mb-0">搜索"<?php echo get_query_var( 's' ); ?>"的结果!</h2>
</div>
</div>
<div class="post_box">
<?php while( have_posts() ): the_post(); ?>
<?php include('excerpt.php') ?>
<?php endwhile; ?>
</div>
<?php get_ds_posts_nav(); ?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<?php get_footer(); ?>