Usually works to enable custom post types to display in the recent post widget. It is not working. My Understrap parent theme is up to date as well as my WordPress version. I did notice however that my child theme is on "version": "1.1.0". Is this an issue?
Understrap child theme scss is not transpiling. I'm not seeing any changes when I make them in scss. Also this piece of code =>>
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_type'); return $params; }
Usually works to enable custom post types to display in the recent post widget. It is not working. My Understrap parent theme is up to date as well as my WordPress version. I did notice however that my child theme is on "version": "1.1.0". Is this an issue?