Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_filter( 'widget_posts_args', 'recent_posts_args');
  2.  
  3. function recent_posts_args($args) {
  4. $args['post_type'] = array('post', 'custom Post Type');
  5. return $args;
  6. }
  7.  
  8. $args['post_type'] = array('post', 'custom Post Type');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement