forked from megane9988/wp-d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
31 lines (31 loc) · 833 Bytes
/
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
<?php get_header(); ?>
<div class="row main-content">
<div class="large-9 large-centered columns">
<h5 class="page-title">
<?php printf( __( '%s の検索結果', 'wp_d' ), '' . get_search_query() . '' ); ?>
</h5>
<hr>
<?php while ( have_posts() ) : the_post(); ?>
<div class="row">
<div class="large-12 columns mb">
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="entry-title"> <a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a> </h2>
<date class="published">
<?php the_time('Y.m.d'); ?>
<?php edit_post_link('編集','(',')'); ?>
</date>
</div>
</div>
</div>
<hr>
<?php endwhile;?>
<div class="row">
<div class="large-12 columns">
<?php wp_d_paging_nav(); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>