This weeks question & answer:
Showcase, promotion and custom content types
Question Summary: How to add PromotionBar and ShowCase feature to your custom post types?
Solution: Its super simple;
This code will activate PromotionBar and ShowCase features for your custom post type For example for bbPress, you can activate those features for topic post type:
add_filter('firmasite_pre_get_posts_ekle', "firmasite_custom_cpt_add"); function firmasite_custom_cpt_add($array){ $array[]='topic'; return $array; }