Create a search field to search on the TITLES of posts, and to search for tag names so that the keyword "PHP" should return results where their title contains "PHP" and any tag names contain the word "PHP".
We can't use LIKE queries in SQL so we'll have to push things into the apc cache, and then use PHP's stripos to identify matching results.
The ideal approach here would be Solr or ElasticSearch but we don't have the infrastructure for this yet.
Create a search field to search on the TITLES of posts, and to search for tag names so that the keyword "PHP" should return results where their title contains "PHP" and any tag names contain the word "PHP".
We can't use LIKE queries in SQL so we'll have to push things into the apc cache, and then use PHP's stripos to identify matching results.
The ideal approach here would be Solr or ElasticSearch but we don't have the infrastructure for this yet.