Advertisement
Guest User

SINGLE

a guest
Mar 7th, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?php
  2. /*single*/
  3. get_header('');?>
  4. <div class="menu-superior-2">
  5. <div class="menu-sub-category">
  6. <ul>
  7. <?php the_category( $parents, $post_id ); ?>
  8. </ul>
  9. </div>
  10. </div>
  11. <div id="contenedor-single-posts">
  12. <div id="single-posts">
  13. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  14. <!--TITULO POST-->
  15. <h1 class="entry-title-single-posts"><?php the_title() ?></h1>
  16. <!--DATOS Y ETIQUETAS-->
  17. <div class="meta-single-posts">
  18. <!-- Codigo Categorias -->
  19. Categorías: <?php the_category(' &bull; '); ?>
  20. </div>
  21. <!--custom field foto -->
  22. <div id="custom_foto_single_posts" class="foto">
  23. <?php $foto = get_post_meta($post->ID, 'foto', true); ?>
  24. <?php if($foto): ?>
  25. <img src="<?php echo $foto ?>" alt="imagen principal post" width="520"/>
  26. <?php endif; ?>
  27. </div>
  28. <!--TEXTO CONTENIDO-->
  29. <?php $content = the_content(); ?>
  30. <!--SINGLE PIE REDES-->
  31. <?php endwhile; else: ?>
  32. <?php endif; ?>
  33. </div>
  34. <div id="col-comentarios">
  35. <!--NAV PREVIOUS - NEXT POSTS-->
  36. <div id="nav-single-posts">
  37. <div class="nav-previous"><?php previous_post_link('%link', '‹ post anterior', TRUE); ?></div>
  38. <div class="nav-next"><?php next_post_link('%link', 'post siguiente ›', TRUE); ?></div>
  39. </div>
  40. <h1 class="titulos-comentarios">especificaciones</h1>
  41. </div>
  42. </div>
  43. <?php get_sidebar('links-footer'); ?>
  44. </div>
  45. <?php get_footer(''); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement