Podpress in mini-loop using get-a-post plugin
-
I made a mini loop and put it on a static page..recently I installed podpress and when I insert an audio clip, it shows up in the main blog but not in the loop..any ideas?
I am using a plugin called get-a-post to display the mini-loop.
The code i am using is:<br><div class="heading" style="border-bottom: 1px dashed #741212">
Donni's Latest Blog Entry</div><br>
<div class="blog">
<?php require_once("wp-config.php"); // Change this for your path to wp-config.php file ?>
<?php get_a_post(); ?>
<div class="grey">
<a class="title" href="<?php the_permalink(); ?>"rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<br>
<span class="datetime"><?php the_time('F jS, Y') ?></span>
</div>
<br><br><br>
<div class="entry">
<?php the_content('Read more…'); ?>
</div>
<div class="postmetadata">
<span class="postedat"><?php _e('Posted by'); ?> <?php the_author(); ?> at <?php the_time('g:i a'); ?>.</span>
<br>
<a class="commentlink" href="<?php comments_link(); ?>">Comments to this post</a>
</div>
</div>
- The topic ‘Podpress in mini-loop using get-a-post plugin’ is closed to new replies.