Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/12/2009, 21:04
bru88
 
Fecha de Ingreso: diciembre-2009
Mensajes: 34
Antigüedad: 15 años
Puntos: 0
Respuesta: Duda con WP Smart Image II

Aca va el codigo completo de la parte que corresponde a la informacion del post (no inclui paginadores y todo lo demas para no hacerlo tan confuso), el archivo es el single.php.

Código PHP:
Ver original
  1. <!-- INICIA EL POST -->
  2.   <div class="post" id="post-<?php the_ID(); ?>">
  3.  
  4.  
  5.     <!-- INICIO FECHA DE PUBLICACION -->
  6.     <acronym class="published" title="<?php the_time('F jS, Y'); ?>"> <span class="pub-month">
  7.     <?php the_time('M'); ?>
  8.     </span> <span class="pub-date">
  9.     <?php the_time('j'); ?>
  10.     </span> </acronym>
  11.     <!-- TERMINA FECHA DE PUBLICACION-->
  12.    
  13.    
  14.     <!-- INICIA EL TITULO -->
  15.     <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
  16.       <?php the_title(); ?>
  17.       </a>
  18.       <?php edit_post_link('*', '<sup>', '</sup>'); ?>
  19.     </h2>
  20.     <!-- TERMINA EL TITULO -->
  21.    
  22.    
  23.     <!-- INICIAN DETALLES -->
  24.     <small> Publicado en
  25.     <?php the_category(', ') ?>
  26.     por
  27.     <?php the_author() ?>
  28.     y tiene
  29.     <a href="#gocommentForm"><?php comments_number(__('0 Comentarios'), __('Un Comentario'), __('% Comentarios')); ?></a>
  30.     </small>
  31.     <!-- TERMINAN DETALLES -->
  32.    
  33.    
  34.     <!-- INICIA CONTENIDO DEL POST -->
  35.     <div class="entry_single">
  36.       <div class="texto_img">
  37.         <a title="my caption" rel="lightbox[uniqueID|filename]" href="images/image-1.jpg">
  38.             <?php wp_smart_image('size=med&type=single') ?>
  39.         </a>
  40.       </div>
  41.       <?php the_content('Continuar leyendo &raquo;'); // Contenido?>
  42.       <?php link_pages('<p><strong>P&aacute;ginas:</strong> ', '</p>', 'number'); // El uso de paginas internas en el post ?>
  43.     </div>
  44.     <!-- TERMINA CONTENIDO DEL POST -->
  45.    
  46.  
  47.   </div>
  48.   <!-- TERMINA EL POST -->