permalink for tags
-
Hi All,
I am trying to create a manually search field for tags…
It all works fine with this:global $wpdb; $search_query = $wpdb->get_results("SELECT name FROM $wpdb->terms WHERE name LIKE '%". $_POST['manual-search'] ."%' "); foreach ($search_query as $result) { echo $result->name; }
But now i want to show the results as permalinks so if you click the posts will be shown in the archive accordingly…
Can someone help me out ?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘permalink for tags’ is closed to new replies.