Conversation
supportIs it possible use this widget with custom post type? It shows only posts thanks https://wordpress.org/plugins/recent-posts-with-excerpts/
Yes. add_filter('recent_posts_with_excerpts_query', 'my_excerpt_query'); function my_excerpt_query( $q ) { $q['post_type'] = 'my_custom_post_type_name'; return $q; }
Yes. add_filter('recent_posts_with_excerpts_query', 'my_excerpt_query'); function my_excerpt_query( $q ) { $q['post_type'] = 'my_custom_post_type_name'; return $q; }