-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcontent.php
26 lines (25 loc) · 857 Bytes
/
content.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
<?php
/**
* The template part for displaying content
*
* @package WordPress
* @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="teaser-post-image">
<?php print the_post_thumbnail( 'cc_list_post_thumbnail' ); ?>
</div>
<div class="entry-content" >
<?php print the_title( sprintf( '<h3 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
<?php print the_excerpt(); ?>
<?php
$categories = get_the_category();
if ( ! empty( $categories ) ) {
$category_link = '<a href="' . esc_url( get_category_link( $categories[0]->term_id ) ) . '">' . esc_html( $categories[0]->name ) . '</a>';
}
?>
<div class="category"><?php print $category_link; ?></div>
</div><!-- .entry-content -->
</article><!-- #post-## -->