understrap / understrap-child

The starter child theme for Understrap, the renowned open-source WordPress starter theme.
GNU General Public License v3.0
582 stars 332 forks source link

Scss not transpiling & Recent Post filter not working for Custom Post Types #372

Open bluecollarcoders opened 1 year ago

bluecollarcoders commented 1 year ago

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?