How to create live autofill search?

I am currently trying to create a wordpress search function that shows live results underneath the search bar. There is an example on the World Bank website (screens below). I’m not looking for an autofill like you would find on Google.com which completes words you type, rather I want it to find actual posts on … Read more

Search for words with telephone numbers from 2-3-4 tree

The key here would be to acquire all the different character combinations that can derive from the characters related to the supplied number in the left to right sequence of that number. Obviously the larger the supplied number, the more combinations there will be. The number of 26678837 which you provided in your post for … Read more

Using meta query (‘meta_query’) with a search query (‘s’)

Trying to build a search that not only searches the defaults (title, content etc) but also a specific custom field. My current query: $args = array( ‘post_type’ => ‘post’, ‘s’ => $query, ‘meta_query’ => array( array( ‘key’ => ‘speel’, ‘value’ => $query, ‘compare’ => ‘LIKE’ ) ) ); $search = new WP_Query( $args ) … … Read more

Include custom taxonomy term in search

I have two custom taxonomies applied to two custom post types. the terms list on the sidebar just fine and will list all posts associated with it. However, if you search one of the terms in specific, it doesn’t bring up a post with that term. Example: http://dev.andrewnorcross.com/das/all-case-studies/ Search for term “PQRI” I get nothing. … Read more