-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
23 lines (22 loc) · 838 Bytes
/
content.php
File metadata and controls
23 lines (22 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* The default template for displaying content
*
* @package WordPress
* @subpackage BirdFILED
* @since BirdFILED 1.0
*/
?>
<li id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'birdfield' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
<header class="entry-header">
<h2 class="entry-title"><?php the_title(); ?></h2>
<time class="postdate" datetime="<?php echo get_the_time( 'Y-m-d' ) ?>"><?php echo get_post_time( get_option( 'date_format' ) ); ?></time>
<?php if ( comments_open() ) : ?>
<span class="icon comment"><?php comments_number('0', '1', '%'); ?></span>
<?php endif; ?>
</header>
<?php the_post_thumbnail( 'thumbnail' ); ?>
<div class="entry-content"><?php the_excerpt(); ?></div>
</a>
</li>