Viewing file: comments.php (4.01 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php // No borrar estas lineas
if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Por favor, no acceda a esta página directamente.');
if (!empty($post->post_password)) { // si requiere contrasena
if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // y no concuerda con la cookie
?>
<p class="nocomments">Esta entrada está protegida con contraseña. Introduzca la contraseña para ver los comentarios.<p>
<?php
return;
}
}
/* Variable para colores de fondo alternados */
$oddcomment = 'alt';
?>
<!-- Edite desde aqui. -->
<?php if ($comments) : ?>
<h3 id="comments"><?php comments_number('Sin comentarios', '1 comentario', '% comentarios' );?> sobre “<?php the_title(); ?>”</h3>
<ol class="commentlist">
<?php foreach ($comments as $comment) : ?>
<li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
<cite><?php comment_author_link() ?></cite> dijo:
<?php if ($comment->comment_approved == '0') : ?>
<em>Su comentario está esperando ser moderado.</em>
<?php endif; ?>
<br />
<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('j \d\e F, Y') ?> - <?php comment_time() ?></a> <?php edit_comment_link('e','',''); ?></small>
<?php comment_text() ?>
</li>
<?php /* Cambia cada comentario a una clase CSS diferente */
if ('alt' == $oddcomment) $oddcomment = '';
else $oddcomment = 'alt';
?>
<?php endforeach; /* termina el for each de los comentarios */ ?>
</ol>
<?php else : // Si aun no hay comentarios ?>
<?php if ('open' == $post-> comment_status) : ?>
<!-- Comentarios abiertos, pero sin comentarios aun. -->
<?php else : // comentarios cerrados ?>
<!-- Si los comentarios estan cerrados -->
<p class="nocomments">Los comentarios están cerrados</p>
<?php endif; ?>
<?php endif; ?>
<?php if ('open' == $post->comment_status) : ?>
<h3 id="respond">Deje un comentario</h3>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>Debe <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">identificarse</a> para enviar un comentario.</p>
<?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
<p>Identificado como <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Salir de esta cuenta">Salir »</a></p>
<?php else : ?>
<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="author"><small>Nombre <?php if ($req) echo '(requerido)'; ?></small></label></p>
<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="email"><small>Email (no será publicado) <?php if ($req) echo '(requerido)'; ?></small></label></p>
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Sitio web</small></label></p>
<?php endif; ?>
<!--<p><small><strong>XHTML:</strong> Puede usar las siguientes etiquetas: <?php echo allowed_tags(); ?></small></p>-->
<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
<p><input name="submit" type="submit" id="submit" tabindex="5" value="Enviar comentario" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php endif; // Si se requiere registro y no esta indentificado ?>
<?php endif; // if you delete this the sky will fall on your head <-- imposible borrar o traducir este simpatico mensaje que esta con nostros desde b2 :) ?>
|