Ver Mensaje Individual
  #5 (permalink)  
Antiguo 28/12/2008, 16:29
Qualito
 
Fecha de Ingreso: febrero-2006
Mensajes: 104
Antigüedad: 18 años, 2 meses
Puntos: 0
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Hola David

La plantilla se llama DEFAULT y es conocida por todos pues viene en todo wordpress

En base a tu post anterior te coloco el index de esa plantilla que solicitaste

Pregunta adicional sobre la hoja de estilos de esa plantilla...como se llama el estilo o en que linea (dreamweaver) lo ubico que hace referencia al color azul de texto del menu derecho? no lo veo aun y deseo cambiar de color de texto.

Muchas Gracias
att
Qualito



<?php get_header(); ?>

<div id="content" class="narrowcolumn">

<?php if (have_posts()) : ?>

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

<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>

<div class="entry">
<?php the_content('Read the rest of this entry &raquo;'); ?>
</div>

<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>

<?php endwhile; ?>

<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
</div>

<?php else : ?>

<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>

<?php endif; ?>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>