Hello i have a problem with Navigation in wordpress. Not display navigation nor with plugin or with the code (wp core functions navi). I read and the problem is in the index.php but I have no idea what to do. Please help me .
Look my index code :
<?php get_header(); ?>
<div id="page-wrap">
<div id="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
// get the src of the post thumbnail
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 300,300 ), false, '' );
$thumbnailSrc = $src[0];
//uncomment below to see source:
//echo $src[0];
//or
//var_dump($src);
?>
<div class="post">
<a href="<?php the_permalink() ?>"><img class="afis" src="<?php bloginfo('template_directory'); ?>/timthumb.php?src=<?php echo $thumbnailSrc; ?>&w=215&h=110&zc=1" alt="<?php the_title(); ?>"></a>
<div class="info">
<?php the_title(); ?>
</div>
</div>
<?php endwhile; ?>
<?php if (function_exists('wp_corenavi')) wp_corenavi(); ?>
<?php else : ?>
<center><img src="<?php bloginfo('template_directory'); ?>/images/404.png" /></center>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>