Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/05/2008, 17:32
Avatar de axe
axe
 
Fecha de Ingreso: marzo-2004
Ubicación: Capitán Bermúdez, Santa Fe, Argentina
Mensajes: 180
Antigüedad: 20 años, 2 meses
Puntos: 1
Respuesta: Ver comentarios en página inicial

David, gracias por tu respuesta. Probé y probé, rompí todo varias veces, por suerte tengo backup. La verdad que no lo sé hacer, no sé nada de PHP.
No es de vago, pero si me podés ayudar te lo agradecería mucho.

Mi single.php es este:
Código PHP:
<?php get_header(); ?>

<div class="main">

    <div class="col2">

        <div class="left">

            <div class="content">
    
    <?php if (have_posts()) : ?>
        <?php while (have_posts()) : the_post(); ?>
            <div class="post" id="post-<?php the_ID(); ?>">

                <h1><?php the_title(); ?></h1>
                    
                <div class="descr"><?php the_time('F jS, Y'?> by <?php the_author() ?><?php edit_post_link('Editar',' ~ ',''); ?></div>

                <div class="entry">

                    <?php the_content('Read the rest of this entry &raquo;'); ?>

                </div>

                <p class="info">Publicado en <?php the_category(', '?></p>

            </div>

            <?php comments_template(); ?>

        <?php endwhile; ?>

            <p align="center"><?php next_posts_link('&laquo; Noticias Anteriores'?> <?php previous_posts_link('Noticias Siguientes &raquo;'?></p>

    <?php else : ?>

            <h1>No encontrado</h1>

            <p>Lo que buscas no está por estos pagos...</p>

    <?php endif; ?>
        
        </div>

    </div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>
Y index.php

Código PHP:
<?php get_header(); ?>

<div class="main">

    <div class="col2">

        <div class="left">

            <div class="content">
    
    <?php if (have_posts()) : ?>
        <?php while (have_posts()) : the_post(); ?>
            <div class="post" id="post-<?php the_ID(); ?>">

                <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
                    
                <div class="descr"><?php the_time('F jS, Y'?> by <?php the_author() ?><?php edit_post_link('Editar',' ~ ',''); ?></div>

                <div class="entry">

                    <?php the_content('Leer más &raquo;'); ?>

                </div>

                <p class="info">Publicado en <?php the_category(', '?> con <?php comments_popup_link('sin comentarios &raquo;''1 comentario &raquo;''% comentarios &raquo;'); ?></p>

        </div>

            



<?php comments_template(); ?>

        <?php endwhile; ?>

            <div class="left"><?php next_posts_link('&laquo; Noticia Anterior'?></div>
            <div class="right"><?php previous_posts_link('Noticias Siguiente &raquo;'?></div>
            <div class="clearer"></div>

    <?php else : ?>

            <h2 align="center">No encontrado</h2>

            <p align="center">Lo que buscas no está por estos pagos....</p>

    <?php endif; ?>

            </div>

        </div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>
__________________
Esteban | RomeroSitios.com
Diseño Web Rosario < conocenos!

Última edición por axe; 29/05/2008 a las 13:15