soundmap/theme/theme_window.php

22 lines
933 B
PHP
Raw Normal View History

2016-11-29 01:04:30 +01:00
<?php
?>
<div <?php post_class('marker-window', $id) ?>>
<div class="post-title"><h3><a href="<?php echo get_permalink($id);?>"><?php echo get_the_title($id); ?></a></h3></div>
<div class="post-content">
<?php echo apply_filters('the_content',get_the_content()) ?>
<?php if(isset($mark->autor) && $mark->autor){ ?> <p class="marker-info"><?php echo __('Author', 'soundmap') . ': ' . $mark->autor; ?></br><?php } ?>
<hr class="clear">
2016-11-29 04:26:53 +01:00
<!--audio class="soundmap-audio-player not-processed" src="<?php echo $mark->files[0]['url'] ?>"></audio-->
2022-12-14 01:02:15 +01:00
<audio class="" src="<?php echo $mark->files[0]['url'] ?>" controls=controls style="max-width:100%;" autoplay></audio>
2016-11-29 01:04:30 +01:00
<div class="marker-info">
<?php the_tags(__('Tags','soundmap') . ': ', ' | ', '</br>'); ?>
<?php echo __('Categories','soundmap') . ': '; the_category(' | '); ?>
</div>
</div>
</div>