Audio Player – can’t stop.
-
Hi there,
I am trying to implement a ‘random audio’ section on my homepage, making use of the excellent Audio Player plugin.
I am calling a single post from a category using:
<?php
query_posts(array(‘category_name’ => ‘Sounds’, ‘orderby’ => ‘rand’, ‘showposts’ => 1));
if (have_posts()) :
while (have_posts()) : the_post();
the_title();
the_content();
endwhile;
endif; ?>The post content is just an <a ref= to the audio file and it works perfectly…
Except that the pause/stop button does not work! The player plays just fine, the volume is adjustable, you just can’t stop it, if you wish to.
Has anyone had and/or solved any similar problems to this using this (honestly very good) plugin?
Thanks,
Dunc
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Audio Player – can’t stop.’ is closed to new replies.