-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
32 lines (31 loc) · 1.1 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
<?php get_header(); ?>
<div class="container">
<div class="row mobil-row">
<div class="col-8 kutu">
<div class="container">
<div class="son-haberler">
<span class="son-yazilar">
<div class="son-yazilar-icon">
<i class="fa fa-search"></i></div>
<a><?php echo cs_get_option( 'aradiginiz-kelime' ); ?> "<?php echo $s ?>"</a>
</span>
</div>
<?php if ( have_posts() ) : while ( have_posts() ) :
the_post(); ?>
<?php include "inc/post_box.php"; ?>
<?php endwhile; else: ?>
<?php _e( '<div class="bisey-bulunmadi">Bişey Bulunmadı...</div>' ); ?>
<?php endif; ?>
<?php include "inc/pagination.php"; ?>
</div>
</div>
<div class="col-4 mobil-kutu">
<?php
if ( ! dynamic_sidebar( 'sidebar' ) ) :?>
<?php endif; ?>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php
get_footer();