03/08/2010, 20:59
|
| | Fecha de Ingreso: julio-2008
Mensajes: 58
Antigüedad: 16 años, 4 meses Puntos: 0 | |
Respuesta: Ayuda con Wordpress Hola Nekko, gracias por contestar, si, efectivamente tengo la plantilla de comentarios, y su código es el siguiente:
<?php // No borrar estas líneas
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Por favor, no abras esta página directamente. ¡Gracias!');
if (!empty($post->post_password)) { // Si hay una contraseña
if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // Y no coincide con la cookie
?>
<p>Esta entrada está protegida con contraseña. Introduce la contraseña para ver los comentarios.</p>
<?php
return;
}
}
/* Esta variable es para alternar el fondo de los comentarios */
$oddcomment = 'class="alt" ';
?>
<?php if ($comments) : ?>
<h3 id="comments"><?php comments_number('Sin Respuestas', 'Una Respuesta', '% Respuestas' );?> a “<?php the_title(); ?>”</h3>
<ol>
<?php foreach ($comments as $comment) : ?>
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<?php echo get_avatar( $comment, 32 ); ?>
<cite><?php comment_author_link() ?></cite> Dice::
<?php if ($comment->comment_approved == '0') : ?>
<p>Tu comentario está pendiente de moderación.</p>
<?php endif; ?>
<p><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F jS, Y') ?> a las <?php comment_time() ?></a> <?php edit_comment_link('editar',' ',''); ?></p>
<?php comment_text() ?>
</li>
<?php
/* Cambia cualquier otro comentario (trakbacks) a una clase distinta */
$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
?>
<?php endforeach; /* fin de los comentarios */ ?>
</ol>
<?php else : // esto se muestra si aún no hay comenarios ?>
<?php if ('open' == $post->comment_status) : ?>
<!-- Si los comentarios están abiertos, pero no hay comentarios. -->
<?php else : // los comentarios están cerrados ?>
<!-- Si los comentarios están cerrados -->
<p>Los comentarios están cerrados.</p>
<?php endif; ?>
<?php endif; ?>
<?php if ('open' == $post->comment_status) : ?>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>Tu debes estar <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">conectado</a> para escribir 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>Conectado 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">Deconectarme »</a></p>
<?php else : ?>
<input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="author">Nombre <?php if ($req) echo "(necesario)"; ?></label>
<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email">Email (no se publicará) <?php if ($req) echo "(necesario)"; ?></label>
<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url">Página web</label>
<?php endif; ?>
<p><strong>XHTML:</strong> Puedes utilizar estas etiquetas: <code><?php echo allowed_tags(); ?></code></p>
<textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea>
<input name="submit" type="submit" id="submit" tabindex="5" value="Enviar Comentario" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php endif; // No borrar ?>
<?php endif; // No borrar ?> |