Themes y Diseño
está sin resolverinstale el theme channel en mi blog ( http://www.seriesloads.com.ar ) y me anda bien pero el problema es que no se me ven los botones para cambiar de pagina, es decir para ver los otros post. Pero lo post SI ESTAN ya que cuando los busco aparecen, pero no tengo esos botones y son CRUSIALES! porfavor ayuda!!!
Uso la version 3.2.1 Gracias!
revisa en index, o al final del loop el codigo debe estar desactivado por \\, ya que el contenedor se muestra
<div class="navigation">
</div>
paso code de index, que hago ?
[php]<?php get_header(); ?>
<div id="col1">
<div class="featuredline"></div>
<div class="clear"></div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post">
<div id="postbox">
<div class="header">
<h3>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?>
</h3>
<span class="author">
<?php the_author_posts_link(); ?>
</span> // <span class="date">
<?php the_time('M jS, Y') ?>
</span></div>
<div class="thumbnail">
<?php get_thumbnail($post->ID, 'thumbnail', 'alt="' . $post->post_title . '"'); ?>
</div>
<div class="clear"></div>
<div class="info">
<?php the_content_limit('315'); ?>
</div>
<div class="meta"><span class="continue"> " rel="bookmark" title="Continue reading <?php the_title_attribute(); ?>">
<?php _e("Continue", 'themejunkie'); ?>
</span> <span class="comment">
<?php comments_popup_link('0 Comment', '1 Comment', '% Comments'); ?>
</span></div>
</div>
<!--end: postbox-->
</div>
<!--end: post-->
<?php endwhile; ?>
<div class="clear"></div>
<div class="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php else : ?>
<p>No posts found.</p>
<?php endif; ?>
</div>
<!--end: col1-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Debes Identificarte para publicar.