-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcontent-search.php
More file actions
27 lines (16 loc) · 812 Bytes
/
Copy pathcontent-search.php
File metadata and controls
27 lines (16 loc) · 812 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
25
26
27
<article id="post-<?php the_ID(); ?>" class="well page active">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail('post-image'); ?>
</a>
<?php if ( !empty(get_post(get_post_thumbnail_id())->post_excerpt) ) : ?>
<p class="caption"><?php echo get_post(get_post_thumbnail_id())->post_excerpt; ?></p>
<?php endif; ?>
<?php endif; ?>
<header class="entry-header">
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
</header><!-- .entry-header -->
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
</article><!-- #post-## -->