WordPress Uses Wanna on some of its Pages..
Some WordPress sites, when a search result is nothing, will ask if you: Wanna try an alternative keyword search?
I know that word grates on some people, as it uses the common American language.
One location for the use of that word is in loop-not-found.php (In the Graphene Theme)
This is shown in the code as:
if ( ! is_search() )
_e( “Sorry, but you are looking for something that isn’t here. Wanna try a search?”
else
_e( “Sorry, but no results were found for that keyword. Wanna try an alternative keyword search?
So I changed it to “Sorry, but no results were found for that keyword. Please try an alternative keyword search?”
with the following
if ( ! is_search() )
_e( “Sorry, but you are looking for something that isn’t here. Would you like to try a search?”
else
_e( “Sorry, but no results were found for that keyword. Please try an alternative keyword search?”
347.1 - 873,753
The file used by the theme Twenty-Fifteen is the content-none.php file in the wp-content/themes/twentyfifteen folder.