<select name="sort-posts" id="sortbox" name="sortbox">
<option value="" disabled>Sort by</option>
<?php
$categories = get_categories(['exclude' => 1]);
foreach ($categories as $category) {
echo "<option>$category->name </option>";
}
?>
<option>Newest</option>
<option>Oldest</option>
<option>Title Asc</option>
<option>Title Desc</option>
</select>
我希望在不重定向或使用表单的情况下获取所选选项的值,以便我在函数中使用它。
我该怎么做?