feature: Filters

This commit is contained in:
Keith Solomon
2025-02-04 16:22:55 -06:00
parent c878c48e92
commit 8f44d8385a
4 changed files with 120 additions and 37 deletions

View File

@@ -1,26 +1,44 @@
<?php
if (!defined('ABSPATH')) { exit; } // Prevent direct access
$resource_types = get_terms(['taxonomy' => 'resource_type', 'hide_empty' => true]);
$resource_types = get_terms(['taxonomy' => 'resource_type', 'hide_empty' => true]);
$resource_subjects = get_terms(['taxonomy' => 'resource_subject', 'hide_empty' => true]);
?>
<form id="resource-filter">
<input type="text" id="search" name="search" placeholder="Search resources...">
<!-- Search Field -->
<div class="search-text">
<input type="text" id="search" name="search" placeholder="Search resources..." class="full-width">
<button type="submit">Filter</button>
</div>
<select id="resource_type" name="resource_type">
<option value="">All Types</option>
<?php foreach ($resource_types as $type) : ?>
<option value="<?php echo esc_attr($type->slug); ?>"><?php echo esc_html($type->name); ?></option>
<?php endforeach; ?>
</select>
<div class="search-tax">
<!-- Resource Type Filters -->
<details>
<summary>Resource Type</summary>
<select id="resource_subject" name="resource_subject">
<option value="">All Subjects</option>
<?php foreach ($resource_subjects as $subject) : ?>
<option value="<?php echo esc_attr($subject->slug); ?>"><?php echo esc_html($subject->name); ?></option>
<?php endforeach; ?>
</select>
<div class="filter-options">
<?php foreach ($resource_types as $type) : ?>
<label>
<input type="checkbox" name="resource_type[]" value="<?php echo esc_attr($type->slug); ?>">
<?php echo esc_html($type->name); ?>
</label>
<?php endforeach; ?>
</div>
</details>
<button type="submit">Filter</button>
<!-- Resource Subject Filters -->
<details>
<summary>Resource Subject</summary>
<div class="filter-options">
<?php foreach ($resource_subjects as $subject) : ?>
<label>
<input type="checkbox" name="resource_subject[]" value="<?php echo esc_attr($subject->slug); ?>">
<?php echo esc_html($subject->name); ?>
</label>
<?php endforeach; ?>
</div>
</details>
</div>
</form>