Ver Mensaje Individual
  #2 (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

Contenido single.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 />
<div id="content">
<span class="bread">
<?php the_breadcrumb(); ?></span>
<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

<div class="post" id="post-<?php the_ID(); ?>">

<div class="entry">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>

<?php the_content('Continuar Leyendo &raquo;'); ?>
<?php wp_link_pages('<p><strong>Paginas:</strong> ', '</p>', 'number'); ?>
</div>

<div class="postmetadata">
<?php if (get_the_tags()){?>
<p>Tags: <?php the_tags('') ?></p>
<?php } ?>
<p><img style="vertical-align:-5px;" alt="categories" src="<?php bloginfo('template_directory');
?>/images/category.gif" height="16" width="16" /> <?php the_category(', ') ?> |
<?php the_author_posts_link(); ?> <?php the_date(); ?> <?php edit_post_link('Editar',' ',''); ?></p>

</div>

<?php comments_template(); ?>

</div>

<?php endwhile; ?>

<div id="navigation">
<div class="fleft"><?php next_posts_link('&laquo; Antiguos') ?></div>
<div class="fright"> <?php previous_posts_link('Nuevos &raquo;') ?></div>
</div>

<?php else : ?>

<div class="post">
<div class="entry">
<h2>No se ha encontrado</h2>
<p>Disculpe las molestias.</p>
</div>
</div>

<?php endif; ?>

</div> <!-- eof main -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>