Advertisement
Guest User

single - custom field

a guest
Mar 4th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.06 KB | None | 0 0
  1. <?php
  2. get_header('');
  3. ?>
  4. <div class="menu-superior-2">
  5. <div class="menu-sub-category">
  6. <ul>
  7. <li>
  8. <?php the_category( $parents, $post_id ); ?>
  9. </li>
  10. </ul>
  11. </div>
  12. <div class="menu-maps-links">
  13. <ul>
  14. <li><a href="http://www.walkingstgo.cl/mapas/" target="_self">googlemap</a></li>
  15. <li><a href="http://www.walkingstgo.cl/links/" target="_self">links de interés</a></li>
  16. <li><a href="http://www.walkingstgo.cl/galeria/" target="_self">galería de fotos</a></li>
  17. <li><a href="http://www.walkingstgo.cl/archivos/" target="_self">archivos</a></li>
  18. </ul>
  19. </div>
  20. </div>
  21. <div id="contenedor-single-posts">
  22. <div id="single-posts" class="esquinas_redondeadas sombras">
  23. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  24. <!--TITULO POST-->
  25. <h1 class="entry-title-single-posts"><?php the_title() ?></h1>
  26. <!--fecha-->
  27. <div class="published">
  28. <div class="published_numeros"><?php the_time('j'); ?></div>
  29. <div class="published_mes"><?php the_time('M'); ?></div>
  30. </div>
  31. <!--DATOS Y ETIQUETAS-->
  32. <div class="meta-single-posts">
  33. <!--autor-->
  34. | Autor › <?php the_author_posts_link() ?> |
  35. <!-- Codigo Categorias -->
  36. Categorías: <?php the_category(' &bull; '); ?> |
  37. <!--LINK AUTOR-->
  38. <?php the_tags('Tags: ', ' &bull; '); ?> |
  39. </div>
  40.  
  41. <!--custom field foto-->
  42. <div id="custom_foto_single_posts" class="foto">
  43. <?php $foto = get_post_meta($post->ID, 'foto', true); ?>
  44. <?php if($foto): ?>
  45. <img src="<?php echo $foto ?>" alt="imagen principal post" width="520"/>
  46. <?php endif; ?>
  47. </div>
  48.  
  49. <!--TEXTO CONTENIDO-->
  50. <?php $content = the_content(); ?>
  51. <!--SINGLE PIE REDES-->
  52. <!--GOOGLE+ COMPARTIR POST-->
  53. <div class="googleplus">
  54. <g:plusone size="small"></g:plusone>
  55. </div>
  56.  
  57. <!--NAV PREVIOUS - NEXT POSTS-->
  58. <div id="nav-single-posts">
  59. <div class="nav-previous"><?php previous_post_link('%link', '‹ post anterior', TRUE); ?></div>
  60. <div class="nav-next"><?php next_post_link('%link', 'post siguiente ›', TRUE); ?></div>
  61. </div>
  62. <?php posts_relacionados(); ?>
  63. </div>
  64. <?php endwhile; else: ?>
  65. <?php endif; ?>
  66. <div id="col-comentarios" class="esquinas_redondeadas sombras">
  67. <!--custom fields eventos-->
  68. <div class="custom_field_fecha_single">
  69. <?php $fecha = get_post_meta($post->ID, 'fecha', true); ?>
  70. <?php if($fecha): ?>
  71. <?php echo $fecha ?>
  72. <?php endif; ?>
  73. </div>
  74. <div class="custom_field_hora_single">
  75. <?php $hora = get_post_meta($post->ID, 'hora', true); ?>
  76. <?php if($hora): ?>
  77. <?php echo $hora ?>
  78. <?php endif; ?>
  79. </div>
  80. <div class="custom_field_precio_single">
  81. <?php $precio = get_post_meta($post->ID, 'precio', true); ?>
  82. <?php if($precio): ?>
  83. <?php echo $precio ?>
  84. <?php endif; ?>
  85. </div>
  86. <div class="custom_field_lugar_single">
  87. <?php $lugar = get_post_meta($post->ID, 'lugar', true); ?>
  88. <?php if($lugar): ?>
  89. <?php echo $lugar ?>
  90. <?php endif; ?>
  91. </div>
  92. <div id="col_der_googlemaps">
  93. <?php $iframe = get_post_meta($post->ID, 'iframe', true); ?>
  94. <?php if($iframe): ?>
  95. <?php echo $iframe ?>
  96. <?php endif; ?>
  97. </div>
  98. <div class="custom_field_link_single">
  99. <?php $link = get_post_meta($post->ID, 'link', true); ?>
  100. <?php if($link): ?>
  101. <?php echo $link ?>
  102. <?php endif; ?>
  103. </div>
  104. <h1 class="titulos-comentarios">comentarios</h1>
  105. <!--numero comentarios-->
  106. <div class="icono-commentarios"><?php comments_number('0','1','%'); ?></div>
  107. <!--REGLAS COMENTARIOS-->
  108. <p class="reglas_comentarios">En walkingstgo.cl la opción de comentar está
  109. abierta a todos los usuarios, pero te pedimos por favor mantenerte dentro
  110. del tema del artículo y no publicar comentarios ofensivos o publicidad
  111. basura (spam). Nos reservamos el derecho de eliminar cualquier comentario que no
  112. cumpla estas reglas.<br />
  113. Para que aparezca tu foto en vez del icono genérico en tu comentario, el
  114. email con el que comentas debe estar inscrito en Gravatar: http://es.gravatar.com
  115. </p>
  116. <? comments_template(); ?>
  117. </div></div>
  118. <!--/SIDEBAR - BANNERS-->
  119. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement