soundmap_wordpress_plugin/soundmap/theme/theme_window.php

25 lines
803 B
PHP
Raw Normal View History

2011-08-02 13:25:37 +02:00
<?php
?>
<div <?php post_class('marker-window', $marker_id) ?>>
<div class="post-title"><h3><?php echo get_the_title($marker_id); ?></h3></div>
2011-08-02 13:25:37 +02:00
<div class="post-content">
<?php echo apply_filters('the_content',get_the_content()) ?>
<hr>
<p class="marker-info"><?php echo __('Author', 'soundmap') . ': ' . $info['m_author']; ?></br>
<?php echo __('Date', 'soundmap') . ': ' . $info['m_date']; ?></p>
2011-08-02 13:25:37 +02:00
<hr>
<?php
add_player_interface($info['m_files'], $marker_id);
?>
2011-08-02 13:25:37 +02:00
<hr class="clear">
<div class="marker-info">
<?php the_tags(__('Tags','soundmap') . ': ', ' | ', '</br>'); ?>
<?php echo __('Categories','soundmap') . ': '; the_category(' | '); ?>
</div>
2011-08-02 13:25:37 +02:00
</div>
</div>