-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-chat.php
More file actions
83 lines (43 loc) · 2.01 KB
/
content-chat.php
File metadata and controls
83 lines (43 loc) · 2.01 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<div class="post-bubbles">
<a href="<?php the_permalink(); ?>" class="format-bubble" title="<?php the_title_attribute(); ?>"></a>
<?php if ( is_sticky() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php _e( 'Sticky post', 'nayncuration'); ?>: <?php the_title_attribute(); ?>" class="sticky-bubble"><?php _e( 'Sticky post', 'nayncuration'); ?></a>
<?php endif; ?>
</div>
<div class="content-inner">
<?php if ( is_single() ) : ?>
<div class="post-header">
<?php if ( has_post_thumbnail() ) : ?>
<div class="featured-media">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php
the_post_thumbnail( 'post-image' );
$image_caption = get_post( get_post_thumbnail_id() )->post_excerpt;
if ( $image_caption ) : ?>
<div class="media-caption-container">
<p class="media-caption"><?php echo $image_caption; ?></p>
</div>
<?php endif; ?>
</a>
</div><!-- .featured-media -->
<?php endif;
if ( is_single() ) :
the_title( '<h1 class="post-title">', '</h1>' );
elseif ( get_the_title() ) : ?>
<h2 class="post-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php endif; ?>
<?php nayncuration_meta(); ?>
</div><!-- .post-header -->
<?php endif; ?>
<div class="post-content">
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</div><!-- .post-content -->
<div class="clear"></div>
<?php if ( is_single() ) : ?>
<div class="post-cat-tags">
<p class="post-categories"><?php _e( 'Categories:', 'nayncuration' ); ?> <?php the_category( ', ' ); ?></p>
<p class="post-tags"><?php the_tags( __( 'Tags:', 'nayncuration' ) . ' ', ', ' ); ?></p>
</div>
<?php endif; ?>
</div><!-- .post content-inner -->