is_dependency_satisfied() ) { $classes[] = $class; } return $classes; } /** * Exclude ActivityPub post types from the Stream. * * @param array $post_types The post types to exclude. * * @return array The post types to exclude with ActivityPub post types. */ public static function exclude_post_types( $post_types ) { $post_types[] = 'ap_actor'; $post_types[] = 'ap_extrafield'; $post_types[] = 'ap_extrafield_blog'; $post_types[] = 'ap_post'; return $post_types; } }