Advertisement
Guest User

CATEGORY

a guest
Mar 7th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?php
  2. /**
  3. * category
  4. */
  5. get_header('');
  6. ?>
  7. <div class="menu-superior-2">
  8. <div class="menu-sub-category">
  9. <ul>
  10. <?php wp_list_cats('child_of=3'); ?>
  11. </ul>
  12. </div>
  13. </div>
  14. <div id="category-home-content">
  15. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  16. <?php in_category( $category, $_post ) ?>
  17. <div class="category-home-posts">
  18. <h1 class="entry-title-category"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
  19. <!--DATOS Y ETIQUETA-->
  20. <!--Codigo Categorias-->
  21. <div class="meta-category">
  22. Categorías: <?php the_category(' &bull; '); ?>
  23. </div>
  24. <!--custom field-->
  25. <div class="post-custom-field-category foto-category">
  26. <?php $foto = get_post_meta($post->ID, 'foto', true); ?>
  27. <?php if($foto): ?>
  28. <a href="<?php the_permalink() ?>">
  29. <img src="<?php echo $foto ?>" alt="imagen principal post" width="180" height="160"/>
  30. </a>
  31. <?php endif; ?>
  32. </div>
  33. <p>
  34. <?php echo recortar_texto(get_the_excerpt(''),100); ?>
  35. </p>
  36. <!--LEER MÁS-->
  37. <div class="more-link"><a href="<?php the_permalink() ?>">ver +</a></div>
  38. </div>
  39. <?php endwhile; else: ?>
  40. <?php endif; ?>
  41. </div>
  42. <?php get_sidebar('links-footer'); ?>
  43. </div>
  44. <?php get_footer(''); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement