28/04/2010, 07:28
|
| | | Fecha de Ingreso: enero-2010
Mensajes: 149
Antigüedad: 14 años, 10 meses Puntos: 0 | |
Respuesta: Solo el titulo Cita:
Iniciado por Carlangueitor Si lo que quieres dejar solo el título de las entradas en el index más bien quitar <?php the_content();?> de tu archivo index.php (y quizás las etiquetas, el autor, la fecha, etc -depende de tu tema-).
Saludos Quietando la linea se me deforma el theme, alguna solucion a ello? Aqui debajo dejo el index.php
Código:
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="date">
<span class="date1"><?php the_time('jS') ?></span>
<span class="date2"><?php the_time('F') ?></span>
<span class="date3"><?php the_time('Y') ?></span></div>
<h2 class="firstheading"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?></div>
<p class="pageinformation">posted in <?php the_category(', ', __(' and ')) ?> | <?php edit_post_link('<span class="iconEdit">Edit</span>', '', ' | '); ?> <span class="iconComment"><?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></span></p>
</div>
<?php endwhile; ?>
<div id="page_nav">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">No posts found. Maybe try searching?</h2>
<p><strong>We're really, really sorry, but there's nothing here!</strong></p>
<p><em>Maybe you could try searching to see if you can find the post you were looking for.</em></p>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
|