-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-audio.php
70 lines (59 loc) · 2.09 KB
/
content-audio.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
* The template for displaying posts in the Audio post format
*
* @package solo
* @since solo 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php $audiourl = get_post_meta($post->ID, 'audiourl', true);
if ( $audiourl != '' ) : ?>
<div class="featured-media">
<audio controls="controls" id="audio-player">
<source src="<?php echo $audiourl; ?>" />
</audio>
</div>
<?php endif; ?>
<div class="box-wrap">
<header class="entry-header">
<?php if ( is_single() ) { ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php }
else { ?>
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( esc_html__( 'Permalink to %s', 'solo' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h1>
<?php } // is_single() ?>
<?php solo_posted_on(); ?>
</header> <!-- /.entry-header -->
<div class="entry-content">
<div class="audio-content">
<?php the_content( wp_kses( __( 'Continue reading <span class="meta-nav">→</span>', 'solo' ), array(
'span' => array(
'class' => array() )
) ) ); ?>
<?php wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'solo' ),
'after' => '</div>',
'link_before' => '<span class="page-numbers">',
'link_after' => '</span>'
) ); ?>
</div><!-- /.audio-content -->
</div> <!-- /.entry-content -->
</div>
<?php if(is_single()) { ?>
<div class="tag-meta">
<?php if ( is_singular() ) {
// Only show the tags on the Single Post page
solo_entry_meta();
} ?>
</div>
<?php } ?>
<footer class="entry-meta">
<?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) {
// If a user has filled out their description and this is a multi-author blog, show their bio
get_template_part( 'author-bio' );
} ?>
</footer> <!-- /.entry-meta -->
</article> <!-- /#post -->