-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-audio.php
More file actions
57 lines (30 loc) · 1.42 KB
/
content-audio.php
File metadata and controls
57 lines (30 loc) · 1.42 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
<?php wp_enqueue_script( 'nayncuration_mediaelement' ); ?>
<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">
<div class="post-header">
<?php 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;
nayncuration_meta();
?>
</div><!-- .post-header -->
<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><!-- .content-inner -->