Haftanın Sorusu: Showcase, promotion and custom content types

Vitrin ve TanıtımBarı özelliklerine yeni custom post type(özel yazı tipi) nasıl ekleriz?

FirmaSite temasının eşsiz özelliği olan Vitrin ve TanıtımBarı sistemlerine yeni custom post type (özel yazı tipi) eklemek çok basit.
add_filter('firmasite_pre_get_posts_ekle', "firmasite_custom_cpt_add");
function firmasite_custom_cpt_add($array){ 
	$array[]='anothercct'; 
	return $array; 
}