Ways to do phrase search in Blogger: Dashboard (precise, no ranking) and Reader UI (relevance ranking); API does not support it
Quick Info
"iOS build").Blogger Search Mechanisms — Compact Decision Table
| Aspect | Dashboard Search (Author UI) | Public Blog Search (Reader UI / Contempo) | Blogger API / Feeds API |
|---|---|---|---|
| Intended audience | Blog owner / author | Readers / visitors | Developers / tools |
| Search engine | Admin-side internal index | Public relevance-ranked index | Legacy / data-access index |
| Multi-word query handling | Strict phrase filter | Soft phrase boost | Tokenized (OR-style) |
"iOS build" behavior | Returns only posts containing the phrase | Phrase matches first; partial matches later | Returns posts with iOS or build |
| Precision | High | Medium | Low |
| Relevance ranking | No | Yes | No |
| Ordering | Reverse chronological | Relevance-first (then date) | As specified in params; Rev. chrono. by default |
| Pagination | None | Yes (aggressive) | Yes |
| Results per “page” | All matches shown | Limited per page | Controlled by API params |
| Content shown | Post list only | Snippets by default | Full content |
| Can enforce phrase-only results? | Yes (implicitly) | No | No |
| Can improve result quality via customization? | Not applicable | No (ranking is closed) | No |
| Best use case | Finding your own posts precisely | Reader discovery | Export / rendering / archival |
| Practical limitation | No relevance ranking | Pagination + snippets | Poor phrase accuracy |
Details
a) Can you increase the number of search previews per page?
Short answer:
No — there is no built-in Blogger or Contempo setting to change how many posts appear on search results pages.
Blogger’s pagination and search behavior (including how many results/posts are shown per page) is controlled by the platform and the theme code. There isn’t a configuration option in the dashboard that lets you increase that count beyond what Blogger outputs.
Blogger has its own pagination mechanism to optimize load times and server performance, and it automatically returns a limited number of results per page. This isn’t adjustable through settings alone. (Official Blogger Blog)
Alternative options you might consider:
Some pagination scripts/widgets can change how blog posts are displayed on index/archive pages (e.g., “load more” buttons or numbered pagination), but they typically do not affect the search results page without custom coding. (Plus UI Lite)
You could deploy a custom JavaScript widget that fetches results via the Blogger API or RSS and displays more posts, but this is non-trivial and has limitations (e.g., performance, SEO, script complexity).
b) Can you show full page content instead of previews on search results?
Short answer:
There is no Blogger dashboard setting to have Contempo show full posts (content) on search results or index. However, you can modify the theme code to force full content display — but this requires HTML/XML template changes.
How this generally works
In Contempo, the theme displays a post snippet/excerpt by default on search pages and index views instead of full content. This is built into the theme’s XML structure. (StramaXon)
To override it:
Backup your theme (Theme → Edit HTML → Backup).
Search for the part of the template that controls how posts are displayed on non-single views. Typically, this will be something like:
<b:if cond='data:view.isSingleItem'> <b:include data='post' name='postBody'/> <b:else/> <b:include data='post' name='postBodySnippet'/> <b:include data='post' name='postJumpLink'/> </b:if>Replace it so that in the
elsecase it includes the full content instead of the snippet. For example:<b:if cond='data:view.isSingleItem'> <b:include data='post' name='postBody'/> <b:else/> <b:include data='post' name='postBody'/> </b:if>Save the theme and test. This makes index/search pages render full post bodies.
Note: If you have page breaks/jump breaks in posts, you might need to remove them for the full content to truly appear. (StramaXon)
⚠ Important considerations:
Full posts on search/index pages can significantly increase page load time and may affect visitor experience.
This is a theme template edit; if Blogger updates the theme in the future, you might need to reapply these changes.
Removing the snippet might cause issues if posts are very long (e.g., dozens of pages of scroll for search results).
Summary
| Requirement | Built-in Setting Available? | Possible? | Notes |
|---|---|---|---|
| Increase # of search previews per page | No | Not practically without deep custom script | Blogger controls pagination limits. (Official Blogger Blog) |
| Show full content on search/results pages | No | Yes — via theme code edits | Involves editing template to replace snippet logic. (StramaXon) |
Why Your Simple / Simple Bold Theme Showed Full Content
Older Blogger themes like Simple or Simple Bold were designed to render full post content or longer excerpts on search pages by default. They typically did not differentiate between an index page and a search results page in how post content is rendered. That means when search results were displayed, the template still used full post markup rather than just a summary.
By contrast:
-
Contempo (and many modern Blogger themes) intentionally display just snippets on search/index/archive pages, to keep pages clean and fast.
-
That Contempo behavior is a theme-template setting, not something Blogger automatically enforces.
So if you want search results to look like your older blog did, what you are really after is:
making the theme render full post content when displaying search results — like the Simple/Simple Bold templates did
3. How Blogger Search Results Rendering Works (Template Side)
Blogger exposes context flags in the template that tell whether the view is:
-
a single post (
data:view.isSingleItem) -
an index or archive page
-
a search results page
In many templates, the logic looks like:
To force full posts on search pages, you can change the template so that for search context, it also uses the full body — e.g.:
(If that exact code doesn’t exist in your current Contempo theme, it’s conceptually equivalent to replacing snippet include with full body include in the section that renders search results.)
That’s how your Simple theme effectively did it — it did not differentiate search results from full posts in the rendering logic.
4. What You Cannot Change
There are limitations in what you cannot change unless Blogger themselves change the backend:
-
You cannot increase the number of matching results per page beyond ~20 using just the
max-resultsURL parameter — Blogger enforces a server-side cap. Stack Overflow -
You cannot do this through Blogger settings alone — the template change is necessary.
5. What You Can Do
To replicate the full-content search results behavior you want:
-
Edit your Contempo theme HTML
-
Find the portion that renders posts for search/index views
-
Modify it so that:
-
When
data:view.isSearchistrue, it outputs the full post body (postBody) instead of the snippet (postBodySnippet)
-
This effectively returns your search results pages to show full content.
If you want, I can give you a ready-to-paste template snippet for Contempo search results based on your current theme version. Just share the part around where search results posts are being rendered in your theme HTML.
Summary
| Behavior | Possible? | Notes |
|---|---|---|
| Increase number of search results per page | Not possible | Blogger caps around ~20 per page; max-results above that does not expand it. Stack Overflow |
| Show full post content in search results | Yes (via theme edit) | Change template logic to use full postBody on search pages (like Simple did). |
| Replicate older Simple theme behavior | Yes | Modify Contempo theme to similar logic. |
If you’d like, paste the relevant section from your Contempo theme HTML and I’ll prepare the exact changes for your blog.
Below is a precise breakdown, tied to your example.
1. Why your feed URL returns 13 full posts (and renders all content)
Your feed URL:
https://raviswdev.blogspot.com/feeds/posts/default/
?max-results=25
&q=%22iOS%20build%22
&alt=json-in-script
&callback=handleFeed
Key points:
a) This is not the same mechanism as /search
/search?q=...is handled by Blogger’s frontend rendering pipeline, with pagination and snippet logic enforced by the theme and Blogger’s UI constraints./feeds/posts/defaultis handled by Blogger’s Feed (GData v2) API, which:Returns raw post entries
Includes full post content (
content.$t)Is independent of the active theme
Your utility works because:
The feed API always returns full content
Your app renders the returned content directly
No snippet logic is involved at all
b) Why you get 13 posts even with max-results=25
This is expected and correct.
q="iOS build"performs a full-text search across postsOnly 13 posts actually match
max-results=25is an upper bound, not a guarantee
So:
Blogger is not truncating results here — there are only 13 matching entries.
2. Why this works even though the API is “older”
You are using the legacy Blogger GData v2 feeds API, which Google has never removed for Blogger blogs (despite being deprecated elsewhere).
Important characteristics of this API:
| Feature | Behavior |
|---|---|
| Full content | Always returned |
Search (q=) | Full-text, reliable |
| Pagination | Client-controlled via start-index |
| Result cap | Higher than /search UI |
| Theme-dependent | No |
This is why tools like yours remain viable even today.
3. Why Contempo search cannot behave like this by default
The Contempo theme search page is constrained by:
Theme logic
Uses
postBodySnippetIntentionally avoids full content for performance
Blogger UI search pagination
Hard server-side caps (typically ~20 results)
Snippet rendering encouraged
Even if you add:
&max-results=20
to /search, the UI:
Still paginates aggressively
Still obeys snippet rendering unless the theme is modified
4. Why your older “Simple / Simple Bold” experience differed
Older themes:
Did not distinguish search/index views from single-post views
Rendered
postBodyeverywhereEssentially behaved like a feed renderer inside the UI
Your Netlify utility is, in effect:
Recreating the old Simple theme behavior, but externally and cleanly.
5. What this means practically (important conclusion)
✔ What you can do
Use the Feeds API (as you already are) to:
Fetch all matching posts
Render full content
Control pagination yourself
This is the most reliable and future-proof way to get full-content search results
⚠ What you cannot force Blogger to do internally
Make
/searchreturn unlimited full posts via settingsOverride Blogger’s UI pagination limits without template surgery
6. Strategic recommendation (based on your usage pattern)
Given:
Your posts are primarily personal reference notes
You already maintain an external utility
You value completeness over polish
The cleanest architecture is:
Let Blogger’s UI search stay minimal, and treat your Feed-based tool as the “deep search / full content” interface.
This avoids:
Fragile Contempo template hacks
Re-applying changes after theme updates
Performance issues on mobile
If you ever want, you can even:
Link from Blogger’s search page to your tool with the same query
Or embed your feed-based renderer in a Blogger page via
<iframe>
Below is a precise, mechanics-level explanation.
1. Why Contempo (UI) search feels “smarter”
When you use:
/search?q=iOS+build
Blogger’s internal search engine does the following:
Phrase awareness
Treats
"iOS build"as a high-value phraseBoosts posts where the exact phrase appears close together
Relevance ranking
Uses scoring (term proximity, frequency, possibly recency)
Puts the best semantic matches on page 1
Even if pagination exists, the ordering is meaningful
Modern indexing
This is not the same engine as the feeds API
It behaves more like a lightweight Google-style full-text search
That is why:
Even with pagination, the main post you care about appears at the top.
2. Why the Feeds API search behaves poorly
Your feed request:
/feeds/posts/default
?q="iOS build"
Despite the quotes, the Feeds API search has these limitations:
a) No true phrase search
The API does not respect quoted phrases
"iOS build"is effectively treated as:iOS OR buildTokenization is crude and case-insensitive
Result:
Any post containing iOS, build, or both
No proximity or phrase weighting
b) No relevance ranking
Results are not ordered by match quality
They are usually ordered by:
publish date
or internal entry order
So:
A weak match from years ago can appear before your main article
The “best” post is not guaranteed to appear early
c) Different index than UI search
The feeds API:
Uses an older, simplified index
Likely maintained only for backward compatibility
Does not get improvements made to Blogger’s UI search
This explains the critical issue you observed:
The post that clearly contains “iOS build” is not returned, while generic iOS posts are.
This happens when:
The phrase appears in HTML-rich content
Or across tags / markup boundaries
Or not in fields indexed by the feed search (e.g., inside code blocks)
3. This mismatch is expected (and longstanding)
This exact limitation has existed for over a decade.
In effect:
| Feature | Blogger UI Search | Feeds API |
|---|---|---|
| Phrase search | Yes (heuristic) | No |
| Relevance ranking | Yes | No |
| Proximity scoring | Yes | No |
| Token OR behavior | Limited | Dominant |
| Theme-independent | Yes | Yes |
| Full content | Optional | Always |
Your experience is exactly what long-time Blogger developers report when trying to build “smart” search externally.
Long answer below, with precise reasons so you can decide whether migration is still worthwhile.
1. The critical misconception to clear first
It is very natural to assume:
“Newer API (v3) ⇒ smarter search”
Unfortunately, that assumption does not hold for Blogger.
The Blogger UI search and the Blogger APIs (both old feeds and v3) are backed by different search stacks.
UI search → Blogger’s internal, relevance-ranked search (close to Google-style heuristics)
API search → Structured data retrieval with very limited filtering
API v3 is newer in transport and structure, not in search intelligence.
2. What Blogger API v3 actually improves (and what it doesn’t)
Improvements in v3
Blogger API v3 improves:
Authentication (OAuth, API keys)
Structured JSON responses
Stable identifiers (
id,url,labels)Better quota and tooling
Cleaner pagination (
nextPageToken)
These are engineering improvements, not search improvements.
What v3 does not improve
Blogger API v3 does NOT provide:
Phrase search
Relevance ranking
Proximity scoring
Semantic matching
Weighted ordering by match quality
In fact:
Blogger API v3 does not even expose a true full-text search endpoint.
3. Blogger API v3 search capability (this is key)
In Blogger API v3, you mainly get:
GET https://www.googleapis.com/blogger/v3/blogs/{blogId}/posts
Filtering options include:
labelsstatusfetchBodiesmaxResultspageToken
But no proper q= full-text search equivalent like:
/search?q=...
There is a q parameter in some historical documentation, but in practice:
It behaves like a coarse token filter
No phrase handling
No relevance ordering
Results are usually date-ordered
So functionally, v3 search behaves closer to the feeds API than to UI search, not closer to Contempo UI.
4. Why Blogger UI search cannot be replicated via API
This is the core architectural reason:
Blogger UI search:
Uses Blogger’s internal indexed search
Same family as Google Blog Search
Applies:
term proximity
phrase boosts
frequency scoring
Returns ranked results
Blogger APIs:
Designed for content access, not discovery
Index fields are limited and shallow
Ranking is intentionally simple or absent
Google has never exposed Blogger’s internal search ranking engine via API.
This is deliberate.
5. Direct answer to your question
If I migrate my utility to current Blogger API (v3), will I get as good results as Blogger Contempo theme UI?
Definitive answer:
No. You will get cleaner JSON and better pagination, but search relevance will remain inferior.
You will still observe:
OR-style token matching
Missed “best” posts
No guarantee that the primary matching post appears early
In some cases, missed matches altogether
Exactly the same class of problems you are seeing now — just with a newer API wrapper.
6. What migration is still good for (if you do it)
Migration to v3 does make sense if your goals include:
Long-term API stability
Cleaner data handling
Explicit post IDs and metadata
Easier pagination
Reduced reliance on deprecated feeds endpoints
But do not migrate expecting smarter search — that expectation will lead to disappointment.
7. The only way to match Contempo UI search quality
To be very clear and unambiguous:
There is only one place where Blogger’s “smart” search exists — the UI
/searchendpoint.
That is not an impression or a personal frustration—it is an accurate reading of how Blogger’s documentation and APIs are presented versus how they actually behave.
1. What Blogger documentation appears to say
If you read Blogger documentation casually, it creates an implicit expectation that:
“Search is search”
UI search, Feeds API search, and Blogger API v3 search are variations of the same capability
Newer APIs imply better or at least equivalent behavior
None of that is stated explicitly, but the documentation does not warn you otherwise, which is the real problem.
2. What Blogger documentation does not say (the omissions)
Blogger documentation never clearly states:
That UI
/searchuses a different, smarter search engineThat API search is not relevance-ranked
That quoted phrases are ignored in feeds/API search
That the API search index is incomplete or token-based
That UI search capabilities are intentionally not exposed via API
These are all material differences, yet they are undocumented.
1. Where “good” search quality can be influenced
You are correct:
Any customization that preserves Blogger’s good search quality must be done at the theme (UI) level — and only to a limited extent.
Key clarifications:
Search relevance and ranking are entirely controlled by Blogger’s internal search engine
Themes cannot improve relevance
Themes can only:
Decide how the returned results are rendered
Decide what content (snippet vs full body) is shown
Decide how much pagination is exposed visually
So even theme customization operates downstream of search quality.
2. What themes can customize (and what they cannot)
Themes can:
Render full post content vs snippets
Show or hide jump breaks
Change layout, pagination UI, and metadata
Add client-side enhancements (e.g., “load more”)
Themes cannot:
Change result ordering
Improve phrase detection
Add proximity weighting
Force more relevant posts to appear first
Access Blogger’s internal ranking signals
In other words:
Themes can present search results differently, but cannot make them smarter.
3. Documentation reality of Blogger themes
You are also correct here:
Blogger does not officially document its theme/template system at the level needed for safe, confident customization.
What exists:
Fragmented references to:
<b:if>,<b:include>,<b:widget>data:view.isSingleItem,data:view.isSearch, etc.
A handful of old Google blog posts
Scattered examples
What does not exist:
A complete, versioned, authoritative theme reference
A formal schema for Contempo / Soho / Emporio
Guaranteed stability contracts
Clear explanation of rendering contexts
As a result:
Theme development is effectively reverse-engineering
Knowledge lives in:
Community blogs
Forum posts
Trial-and-error
Your assessment is correct.
4. Why this is unlikely to change
Blogger themes are:
Considered end-user customization, not a developer platform
Expected to be modified only lightly
Not treated as a supported API surface
6. A precise restatement of your conclusion
If I were to restate your conclusion in one sentence:
On Blogger, search intelligence is a closed system; the only customization path is through loosely documented theme logic, discovered and maintained via community knowledge, and even that only affects presentation, not quality.
That statement is accurate.
I will validate each of your three points, with a few important refinements.
1) Blogger Dashboard search
Best at search results; shows clean list; no pagination; reverse chronological order
Yes—this is accurate.
What the Dashboard search is doing:
It performs a strict(er) phrase-level match for multi-word queries like
"iOS build"It searches post bodies, titles, and metadata
It returns a finite, complete result set (no pagination)
Results are shown as a simple list of posts
Ordering is reverse chronological, not relevance-ranked
Crucially:
Search ranking does not appear to apply
All returned posts actually contain the phrase
So the Dashboard search behaves like:
“Give me all posts that match this phrase, then sort by date.”
That is why it feels accurate but not ranked.
You are right to call this the most precise phrase filter available on Blogger.
2) Blog UI search (Contempo / public /search)
Search ranking comes into play, but with pagination and snippet issues
Correct, with one nuance.
Public UI search:
Uses a relevance-aware ranking
Applies:
phrase proximity
term weighting
Often surfaces the “main” post first
But:
paginates aggressively
limits visible results per page
renders snippets by default
can include weaker matches in later pages
So its behavior is:
“Rank by relevance first, then paginate.”
That is why:
The “best” post shows up early
But the experience degrades as you go deeper
This is the only place where ranking clearly exists.
3) Blogger API / Feeds API
Quite useless for space-containing search strings
Your conclusion is justified.
API search behavior:
Breaks multi-word queries into tokens
Ignores phrase semantics
Uses OR-style matching
Has no ranking
Often misses the “main” post entirely
Returns false positives
So for "iOS build":
API effectively searches for:
iOS OR buildWhich destroys precision
Calling it “quite useless” for phrase search is fair in practical terms.
Refined comparison table
| Interface | Phrase accuracy | Ranking | Pagination | Full content | Practical value |
|---|---|---|---|---|---|
| Dashboard search | High | None | No | No (list only) | Best for finding posts |
| Blog UI search | Medium–High | Yes | Yes | Snippets | Best for discoverability |
| API / Feeds search | Low | None | Yes | Yes | Poor for phrase search |
Important nuance you implicitly uncovered
You have actually identified three different search engines, not one:
Dashboard search engine
→ Admin-oriented, precision-first, no rankingPublic UI search engine
→ Reader-oriented, relevance-ranked, paginatedAPI / Feeds search engine
→ Legacy, token-based, minimal intelligence
Blogger treats these as separate concerns, even though they share a UI label called “search”.
Final assessment of your conclusions
Your summary is correct, with only one minor adjustment:
Dashboard search is not “best” in ranking terms—but best in precision
UI search is best in relevance, but worst in presentation constraints
API search is not suitable for phrase-based discovery
So your mental model is now solid and realistic.
Practical takeaway (aligned with your usage)
If your goal is:
Finding exact posts you wrote earlier → Dashboard search is best
Helping readers discover content → UI search is unavoidable
Rendering/exporting content → API is fine, but not for discovery
Trying to unify all three into one perfect solution is, unfortunately, not possible on Blogger today.
If you want, we can next:
Document this as a clear internal note for your utility
Explore whether Dashboard search URLs can be leveraged safely
Or decide whether it’s worth keeping all three paths, each for its strength
Your analysis here is sound and well-reasoned.
Let me tie it together cleanly.
1. What your new observation tells us
For the quoted search:
"iOS build"
you observed that:
Top results do contain the exact phrase
Lower-ranked results contain only
iOS, notbuildThose weaker matches are pushed down, not excluded
This tells us something very specific about the Reader UI search engine:
Quoted phrases are treated as a strong relevance signal, not a hard filter.
That is the key insight.
2. How Reader UI search actually behaves
Based on long-standing behavior and your empirical testing, the Reader UI search logic is best described as:
Tokenize the query:
iOSbuild
Apply ranking heuristics:
Exact phrase match ⇒ highest boost
Proximity match ⇒ medium boost
Single-token match ⇒ low boost
Return all sufficiently relevant matches, not only perfect phrase matches.
So the semantics are closer to:
“Prefer exact phrase matches, but don’t exclude partial matches.”
This is why:
You get good results first
But still see noise later
3. Why this is different from Dashboard search
Contrast this with Dashboard search:
Dashboard search behaves closer to a filter
For
"iOS build", it returned only posts containing that phraseNo ranking, no fallback matches
So:
| Interface | Phrase handling |
|---|---|
| Dashboard search | Hard filter |
| Reader UI search | Soft boost |
| API search | Ignored |
Your findings fit this table perfectly.
4. Why Blogger likely designed it this way
From a product standpoint:
Reader UI search is designed for discovery
Better to show “maybe relevant” posts than miss something
Dashboard search is designed for author recall
Precision is more important than recall
API search is designed for data access
Search is secondary and minimal
This explains the divergent behaviors without assuming bugs or inconsistency.
5. Why this matters for your earlier conclusions
Your earlier 3-point summary remains correct, but it can now be refined:
Revised, precise summary
Dashboard search
Best for exact phrase finding
Acts like a filter
Reverse chronological
No ranking
Reader UI search
Best available relevance ranking
Phrase matches strongly boosted but not exclusive
Pagination and snippet limitations remain
API / Feeds search
Token-based
No phrase semantics
No ranking
Lowest precision
This refinement strengthens, not weakens, your model.
6. Implication for customization (important)
This confirms a critical constraint:
Even in the best case, Blogger’s public UI search will never be a strict phrase search.
Therefore:
Theme customization can never enforce “phrase-only” results
The best you can do is present the ranked results clearly
Precision filtering is only available in the Dashboard
So your earlier conclusion stands:
Search intelligence is closed
Themes can only consume and present it
APIs cannot replicate it
7. Bottom line
What you discovered is not a flaw — it is the final missing piece in understanding Blogger search behavior:
Quotes ≠ strict filtering in Reader UI
They are ranking hints
Lower-ranked noise is expected and unavoidable
Your understanding of the system is now internally consistent and matches real-world behavior.
If you want, next we can:
Summarize all this in a compact decision table
Decide whether any theme-level tweak is worth doing at all
Or simply document this as “known Blogger behavior” and move on confidently
Blogger Search Mechanisms — Compact Decision Table
| Aspect | Dashboard Search (Author UI) | Public Blog Search (Reader UI / Contempo) | Blogger API / Feeds API |
|---|---|---|---|
| Intended audience | Blog owner / author | Readers / visitors | Developers / tools |
| Search engine | Admin-side internal index | Public relevance-ranked index | Legacy / data-access index |
| Multi-word query handling | Strict phrase filter | Soft phrase boost | Tokenized (OR-style) |
"iOS build" behavior | Returns only posts containing the phrase | Phrase matches first; partial matches later | Returns posts with iOS or build |
| Precision | High | Medium | Low |
| Recall (breadth) | Medium | High | Very high (noisy) |
| Relevance ranking | No | Yes | No |
| Ordering | Reverse chronological | Relevance-first (then date) | Usually chronological |
| Pagination | None | Yes (aggressive) | Yes |
| Results per “page” | All matches shown | Limited per page | Controlled by API params |
| Content shown | Post list only | Snippets by default | Full content |
| Theme influence | None | Presentation only | None |
| Can enforce phrase-only results? | Yes (implicitly) | No | No |
| Can improve result quality via customization? | Not applicable | No (ranking is closed) | No |
| Best use case | Finding your own posts precisely | Reader discovery | Export / rendering / archival |
| Practical limitation | No relevance ranking | Pagination + snippets | Poor phrase accuracy |
Key Takeaway (one-line)
Blogger has three distinct search behaviors: precision (Dashboard), relevance (Reader UI), and breadth (API) — and none of them can be made to fully replace the others.
This table captures the practical boundary conditions you are working within.
1. Review of the title for content accuracy only
Your proposed title:
Ways to do phrase search in Blogger: Dashboard (precise, no ranking) and Reader UI (relevance ranking); API does not support it
Content accuracy: ✅ Accurate
More specifically:
“Ways to do phrase search in Blogger”
✔ Correct — Blogger does support phrase-like searches, but only in certain interfaces.“Dashboard (precise, no ranking)”
✔ Correct — Dashboard search behaves like a strict phrase filter and lists results without relevance ranking.“Reader UI (relevance ranking)”
✔ Correct — Reader UI search uses phrase matching as a ranking signal, not as a strict filter.“API does not support it”
✔ Correct in practical terms — Blogger APIs do not support true phrase search semantics.
So from a factual/technical standpoint, the title accurately reflects reality.
2. Clarification of the term “phrase search”
Your understanding is also correct:
“Phrase search” means a quoted string search where the string contains spaces between words, e.g.
"iOS build"
Additional precision (useful if you want to define it in the post):
The quotes indicate that the words are intended to be treated as a single phrase
This is distinct from:
single-word search (
iOS)multi-word unquoted search (
iOS build)
In Blogger:
Dashboard treats this close to a true phrase filter
Reader UI treats it as a strong relevance hint
API ignores phrase semantics altogether
So yes — your use of the term phrase search is technically correct in the context of Blogger and consistent with common search terminology.
Optional note (not required, just informational)
If you choose to add one clarifying sentence early in the post (not a title change), something like:
In this post, “phrase search” refers to quoted multi-word searches (for example,
"iOS build").
That would remove any possible ambiguity for readers.
But strictly answering your questions:
Title accuracy: correct
Definition of phrase search: correct
Comments
Post a Comment