Skip to content

Instantly share code, notes, and snippets.

@AmeliaBriscoe
Last active August 29, 2015 14:01
Show Gist options
  • Save AmeliaBriscoe/34f398daff2008374dcc to your computer and use it in GitHub Desktop.
Save AmeliaBriscoe/34f398daff2008374dcc to your computer and use it in GitHub Desktop.
Recent Posts Widget Custom Post Type
add_filter('widget_posts_args', 'widget_posts_args_add_custom_type');
function widget_posts_args_add_custom_type($params) {
$params['post_type'] = array('post', 'custom_post');
return $params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment