Viewing file: single.php (2.74 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php get_header(); ?>
<div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="navigation">
<div class="alignleft"><?php previous_post_link('« %link') ?></div>
<div class="alignright"><?php next_post_link('%link »') ?></div>
</div>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Enlace Permanente a <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entrytext">
<?php the_content('<p class="serif">Leer el resto de esta entrada »</p>'); ?>
<?php link_pages('<p><strong>Páginas:</strong> ', '</p>', 'number'); ?>
<p class="postmetadata alt">
<small>
Esta entrada fue publicada
<?php /* Lo siguiente esta comentado porque, a veces, requiere algunos ajustes.
Es necesario que descargue el plugin y siga las instrucciones:
http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
/* echo 'hace '; $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); */ ?>
el <?php the_time('l, j \d\e F \d\e Y') ?> a las <?php the_time() ?>
y está clasificada bajo: <?php the_category(', ') ?>.
Puede hacer un seguimiento de los comentarios de esta entrada gracias al feed <?php comments_rss_link('RSS 2.0'); ?>.
<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
// Comentarios y Pings permitidos ?>
Puede <a href="#respond">dejar un comentario</a>, o enviar un <a href="<?php trackback_url(true); ?>">trackback</a> desde su sitio.
<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
// Solo Pings permitidos ?>
Los comentarios están cerrados, pero puede enviar un <a href="<?php trackback_url(true); ?> ">trackback</a> desde su sitio.
<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
// Comentarios permitidos, Pings no ?>
Puede dejar un comentario a continuación. Los trackbacks están cerrados.
<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
// Ni comentarios, ni Pings permitidos ?>
Tanto los comentarios como los trackbacks están cerrados.
<?php } edit_post_link('Editar esta entrada.','',''); ?>
</small>
</p>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p>Disculpe, no hay entradas que respondan a su criterio.</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>
|