Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Ajax30

    (@ajax30)

    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.
    Thread Starter Ajax30

    (@ajax30)

    I just need help with a WP issue. It is not about the plugin, but the problem I am trying to solve with it. Any alternative that works would be fine with me.

Viewing 2 replies - 1 through 2 (of 2 total)