-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-image.php
48 lines (37 loc) · 1.52 KB
/
content-image.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
<?php
/**
* Template part for displaying the image post format
*
* @package WordPress
* @subpackage Strip
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-wrap wrap clear">
<div class="entry-attachment">
<header class="entry-header">
<?php
$categories_list = get_the_category_list( __( ', ', 'strip' ) );
if ( ! is_single() ) :
the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
else :
the_title( '<h1 class="entry-title">', '</h1>' );
endif;
?>
</header><!-- .entry-header -->
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'strip' ) ); ?>
</div><!-- .entry-attachment -->
<footer class="entry-meta">
<?php strip_entry_meta(); ?>
<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'image' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'image' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'image' ) ); ?></a></span>
<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
<?php if ( has_excerpt() ) : ?>
<div class="entry-summary">
<?php do_action( 'strip_formatted_posts_excerpt_before' ); ?>
<?php the_excerpt(); ?>
<?php do_action( 'strip_formatted_posts_excerpt_after' ); ?>
</div><!-- .entry-caption -->
<?php endif; ?>
</div><!-- .entry-wrap -->
</article><!-- #post-## -->