I'm setting up a search page by views exposed filter. And one of the field are filter by taxonomy term.
For example, when I search with the taxonomy term filter field, the URL is like below.
domain.com/search?subjects=69
Now I wish to get the value of the taxonomy (it's showing tid instead of value)
<?php
$idenity = $_GET['subjects'];
print $idenity;
?>
Anyway to get the value of the taxonomy value but not taxonomy id?