Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/08/2010, 19:32
bbv81
 
Fecha de Ingreso: julio-2008
Mensajes: 58
Antigüedad: 16 años, 4 meses
Puntos: 0
Respuesta: Ayuda con Wordpress

index.php
<?php get_header(); ?>
<div id="navegacion">
<ul class="navegacion" >
<li> <?php if(is_home()) { ?> <?php } ?>
<a href="<?php bloginfo('home'); ?>">Inicio</a></li>
<?php wp_list_pages('sort_column=menu_order&depth=1&titl e_li='); ?>
</ul>
</div>
<br />
<?php get_sidebar(); ?>
<!-- Capa contenedor, capa izquierda sidebar -->

<div id="content">
<span class="bread">
<?php the_breadcrumb(); ?></span>


<!-- Bucle de los Post del Blog -->
<?php if (have_posts()) : ?> <!-- Si hay post ejecutamos el While -->
<?php while (have_posts()) : the_post(); ?>
<!-- Comienza el While -->
<div id="post-<?php the_ID(); ?>">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></h3>
<small><i><?php the_time('F jS, Y') ?> <!-- Por <?php the_author() ?> --></i></small>
<div >
<?php the_content('Leer el resto de esta entrada'); ?>
</div>
<p> <i>Posteado en <?php the_category(', ') ?> | <?php edit_post_link('Editar', '', ' | '); ?>
<?php comments_popup_link('Sin Comentarios »', '1 Comentario »', '% Comentarios »'); ?></i></p>
</div>
<?php endwhile; ?>
<!-- Fín del While -->

<div>
<div class="alignleft"><?php next_posts_link('&laquo; Entradas Anteriores') ?></div>
<div class="alignright"><?php previous_posts_link('Entradas Posteriores &raquo;') ?></div>
</div>

<?php else : ?>
<h2 class="center">No se ha encontrado</h2>
<p class="center">Lo sentimos mucho, pero no se ha podido encontrar lo que estaba buscando.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>

Última edición por bbv81; 02/08/2010 a las 19:36 Razón: correcion