-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
55 lines (48 loc) · 1.94 KB
/
home.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
<?php get_header(); ?>
<div class="post kizi">
<!--ループ開始-->
<div id="dendo"> </div>
<!-- /#dendo -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="entry">
<div class="sumbox"> <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php if ( has_post_thumbnail() ): // サムネイルを持っているときの処理 ?>
<?php
$title= get_the_title();
the_post_thumbnail(array( 150,150 ),
array( 'alt' =>$title, 'title' => $title)); ?>
<?php else: // サムネイルを持っていないときの処理 ?>
<img src="<?php if (defined('THEMECDN')) { echo THEMECDN; } else { echo get_template_directory_uri(); } ?><?php if (defined('NOIMAGE')) { echo NOIMAGE; } else { echo '/images/no-img.png'; } ?>" alt="no image" title="no image" width="100%" height="100%" />
<?php endif; ?>
</a> </div>
<!-- /.sumbox -->
<div class="entry-content">
<h3 class="entry-title-ac"> <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a></h3>
<div class="blog_info contentsbox">
<p>
<?php the_time('Y/m/d') ?>
|
<?php the_category(', ') ?>
<?php the_tags('', ', '); ?>
</p>
</div>
<p class="dami"><?php echo mb_substr( strip_tags( stinger_noshotcode( $post->post_content ) ), 0, 100 ) . ''; ?></p>
<p class="motto"><a class="more-link" href="<?php the_permalink() ?>">続きを見る</a></p>
</div>
<!-- .entry-content -->
<div class="clear"></div>
</div>
<!--/entry-->
<?php endwhile; else: ?>
<p>記事がありません</p>
<?php endif; ?>
<!--ページナビ-->
<?php if (function_exists("pagination")) {
pagination($wp_query->max_num_pages);
} ?>
<!--ループ終了-->
</div>
<!-- END div.post -->
<?php get_footer(); ?>