Thanks, I understant the idea you are saying but I’m not sure how to implement such a filter. Say I found such an SQL function, what would the code look like in order to use the function to change the wordpress search result. Would I need to make my own query or would applying this filter automatically effect the wordpress search query.
Also what would the code look like to check the query variables.
function decode_entities($query){
//what goes here??
}
addfilter('posts_where','decode_entities);
Is this what you mean?
Meyer
-
This reply was modified 6 years, 4 months ago by bcworkz. Reason: code fixed