-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-link.php
executable file
·16 lines (15 loc) · 1.03 KB
/
content-link.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<header><?php _e( 'Link', 'ocl-theme' ); ?></header>
<div class="entry-content clearfix">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'ocl-theme' ) ); ?>
</div><!-- .entry-content -->
<footer class="entry-meta clearfix">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'ocl-theme' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
<?php if ( comments_open() ) : ?>
<div class="comments-link">
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'ocl-theme' ) . '</span>', __( '1 Reply', 'ocl-theme' ), __( '% Replies', 'ocl-theme' ) ); ?>
</div><!-- .comments-link -->
<?php endif; // comments_open() ?>
<?php edit_post_link( __( 'Edit', 'ocl-theme' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post -->