i have made a new WordPress Theme and ive done .. but i have one problem. I can't get the pagination work. I use the "wp-paginate" plugin and i have put the folloing code on my index.php
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
But that doesn't work for my site. There is still nothing on the frontend and in the markup. What can i do?
Here is my index.php:
<?php get_header(); ?>
<div id="wraper">
<div id="main" role="main">
<article>
<?php if ( ! have_posts() ) : ?>
<header>
<h1>Nicht gefunden!</h1>
</header>
<p>Sorry, leider konnte der gewünschte Artikel nicht gefunden werden. Vielleicht hilft Ihnen die suche ja weiter!</p>
<?php endif; ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'loop-index', 'index' ); ?>
</article><!-- post -->
<?php endwhile; ?>
</div> <!-- end #wraper -->
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>