I've created a program in Delphi that uses Google's AJAX Search API to evaluate search phrase occurrences on specific sites, mine included. What surprised me was it doesn't appear Google is indexing some words on my pages, or I am forming my search queries via the API incorrectly. For example the search
site:www.delphi.org -"delphi programming" which uses the search string site%3Awww.delphi.org+-"delphi+programming" via the API
MarkDown doesn't like when I embed these links:
http://www.google.com/search?&q=site%3Awww.delphi.org+-"delphi+programming"
Clearly shows that all the pages returned have the phrase "Delphi programming" in the header or otherwise in the body text.
It is a different set then is returned by the search
site:www.delphi.org +"delphi programming" which uses the search string site%3Awww.delphi.org+%2B"delphi+programming" via the API
MarkDown doesn't like when I embed these links:
http://www.google.com/search?&q=site%3Awww.delphi.org+%2B"delphi+programming"
Maybe the issue is in WordPress. Is it looking at the pages differently? What am I missing?