Guest User

Untitled

a guest
Jan 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php get_sidebar(); ?>
  3. <div class="middle">
  4. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>">
  6. <h2><?php the_title(); ?></h2>
  7. <div class="entry">
  8.  
  9. "HERE I WANT INCLUDE ALL POSTS FROM A CATEGORY ID
  10. FOR EXAMPLE, when i acesso /wordpress/category/%categoty%/ i want that this page display iqual category page."
  11. </div>
  12. </div>
  13. <?php endwhile; endif; ?>
  14. <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
  15. </div>
  16.  
  17. <?php get_sidebar(); ?>
  18.  
  19. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment