Last active
August 29, 2015 14:04
-
-
Save wpspeak/081548490fd94f3fd7a0 to your computer and use it in GitHub Desktop.
Display Custom Post Types in Recent Posts Widget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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