geminilabs

Untitled

Aug 27th, 2025 (edited)
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_filter('site-reviews-filters/config/forms/filters-form', function ($config) {
  2.     $excludedTermIds = [
  3.         714, // Schools
  4.         715, // Corporate
  5.         972, // Community Event
  6.         976, // Fundraiser
  7.     ];
  8.     foreach ($excludedTermIds as $termId) {
  9.         unset($config['filter_by_term']['options'][$termId]);
  10.     }
  11.     return $config;
  12. }, 15);
Advertisement
Add Comment
Please, Sign In to add comment