I have listed every mp3 file in a separate default post that I display on the custom post page like so:
<ul class="podcasts">
<?php $catquery = new WP_Query( 'cat=7&posts_per_page=30&order=DESC' );
while($catquery->have_posts()) : $catquery->the_post();
?>
<li class="track-list-item"><?php the_content();?></li>
<?php endwhile;?>
</ul>
I have inserted the plugin’s shortcode manually on every track’s post. It works!
-
This reply was modified 7 years, 10 months ago by Ajax30.