Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active August 29, 2015 14:04
Show Gist options
  • Save wpspeak/081548490fd94f3fd7a0 to your computer and use it in GitHub Desktop.
Save wpspeak/081548490fd94f3fd7a0 to your computer and use it in GitHub Desktop.
Display Custom Post Types in Recent Posts Widget
<?php
//* Display Themes CPT in Recent Posts Widget
add_filter('widget_posts_args', 'afn_cpt_recent_posts_widget');
function afn_cpt_recent_posts_widget($params) {
$params['post_type'] = array('themes');
return $params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment