How to start working with Podlover?

I’m new to the podlove community. I have start reading the getting started docs to setup everything in the backend in of Wordpress. I trying to figure out how to build a loop feed all recent podcast and created a custom podlove web player.

`

<?php // Display blog posts on any page @ https://m0n.co/l $loop = new WP_Query( array( 'post_type' => 'podcast', ?>
  <?php if not if_feed() ?>
    <div class="col-md-4">
      <div class="postbox podcastsbox">
        <img class="imgpost cover" src="<?php the_post_thumbnail('full');?>"/>

        <div id="button" class="playbtn">
          <span>
            <a class="button gradient" id="play" href=""><i class="fasfa-play"></i></a>
          </span>// This is custom button that using in font awesome
        </div>

        <div id="trackers">
          <div class="box">
            <span id="duration"></span>
            <span id="progress"></span>
          </div>
        </div>

      	<div class="postinfo">
          <h5><?php echo $episode->title() ?></h5>
      		<p><?php echo $episode->summary() ?></p>
      	</div>
      </div>
    </div>
  <?php endif ?>
  <?php wp_reset_postdata(); ?>
  </div>
</div>

I don’t know why my podcast page is load blog post. I have set everything that they told me docs but still does want to show with podcast that I have setup.

1 Like