By using the action grid_boxes_search
.
Example:
add_action( 'grid_boxes_search', function($result, $grid_id=null, $post_id=null) {
$final_results = [];
$allowed_types = ["media", "posts", "facebook_feed", "post", "my_type"];
foreach ($result as $item) {
if (in_array($item['type'], $allowed_types)) {
array_push($final_results, $item);
}
}
return $final_results;
});
-
This reply was modified 7 years, 10 months ago by
philippze.