Guest User

Untitled

a guest
Sep 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php $args = array(
  2. 'cat' => 4,
  3. 'posts_per_page' => 4,
  4. 'post__in' => get_option( 'sticky_posts' ),
  5. );
  6. $showNewsSticky = new WP_Query( $args );
  7. while ($showNewsSticky->have_posts()) : $showNewsSticky->the_post(); ?>
  8. <h2 class="small2 marginBottomQuater">
  9. <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
  10. </h2>
  11. <?php the_excerpt(); ?>
  12. <?php endwhile; ?>
Add Comment
Please, Sign In to add comment