Advertisement
imranmodel32

remove a post from WP recent post widget

Sep 12th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function exclude_posts_wpse_103570( $args ){
  2. // post ID's to exclude:
  3. $args['post__not_in'] = array( POST_ID_HERE );
  4. return $args;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement