Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3646

Reply To: FirmaSite Social: Buddypress + bbPress theme based on Bootstrap

$
0
0

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; 
}

Viewing all articles
Browse latest Browse all 3646

Trending Articles