Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <div class="lister"><ul>
  2. <?php
  3. query_posts( 'cat=3&post_type=page' );
  4. if ( have_posts() ) while ( have_posts() ) : the_post();
  5.  
  6. ?>
  7. <li>
  8. <span style="font-size: 32px; font-wieght: bold; text-decoration: none;"><?php the_title(); ?></span>
  9. <br />
  10. <?php echo '</li>';
  11. endwhile;
  12. wp_reset_query();
  13. ?>
  14. </ul></div>
Add Comment
Please, Sign In to add comment