Problems with Customizable Post Listings Plugin
-
Hey,
I’m new with wordpress and I’ve installed the Customizable Post Listings plugin, but I have some problems with it.
When I wanna display my post on home.php he repeats the headlines 10 times, something like this:recent posts
06/09/2005: post1
06/07/2005: post2
06/06/2005: post 3Recent Posts
06/09/2005: post1
06/07/2005: post2
06/06/2005: post 3And this is my code:
<?php
get_header();
?><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
-
Recent Posts
<?php c2c_get_recent_posts(20); ?></div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, dat konden we niet vinden!’); ?>
<?php endif; ?>
<?php wp_pagenavi()?><?php get_footer(); ?>
<br><br>Anyone know what’s wrong and can help, please?
The topic ‘Problems with Customizable Post Listings Plugin’ is closed to new replies.