Advertisement
Guest User

Untitled

a guest
Aug 28th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2.  
  3. query_posts( array(
  4. 'category_name' => 'notice',
  5. 'posts_per_page' => 1
  6. ) );
  7.  
  8. while ( have_posts() ) : the_post();
  9. echo '<h1>','<a href="<?php the_permalink(); ?>">';
  10. the_permalink();
  11. the_title();
  12. echo '</a>','</h1>';
  13.  
  14. echo '<p>';
  15. the_content();
  16. echo '</p>';
  17. endwhile;
  18.  
  19. wp_reset_query();
  20.  
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement