Your best-ranking pages might not link to what you sell
Editorial content that ranks well and links nowhere is a visitor arriving, reading, and leaving. The fix is usually one sentence per page.
An eight-minute article about a specific product, ranking in the top twenty, containing zero links to that product page. The product page itself sat around position ninety for the same term.
That pattern repeated across every in-depth article on the site. The guide-style content linked generously. The deep single-subject articles linked nowhere.
Why it happens
Explainer content gets written to be genuinely useful, often deliberately kept free of anything that reads as a sales pitch. That instinct is right and it overshoots. A link to the thing the article is about is not a pitch, it is the obvious next step for someone who just read a thousand words about it.
It also happens because these articles are usually written as a batch, separately from the commercial pages, sometimes before those pages exist.
What it costs
Two things, and the second is the one people miss.
- Visitors who arrive interested and leave without seeing what you offer.
- Internal link authority that stops dead. Ranking pages pass weight to what they link to. An article at position ten linking to a page at position ninety is one of the cheapest ways to move the second page. Not linking wastes it.
How to audit it
Fetch each editorial page, strip the header and footer, and count links to commercial pages in what remains:
body = extract(html, "<main>").split("<footer")[0]
links = set(find_all(body, r"/products/([a-z0-9-]+)"))
Stripping the shared furniture is essential. A site-wide footer or navigation carrying product links will make every page look correctly linked. The first version of this audit did not strip it and reported the exact opposite of the truth, so verify a couple of results by hand before acting on any of it.
Add a closing paragraph to every explainer that links the specific thing it explains, plus one related comparison. Two links, one sentence, on pages that already rank. It is the highest return per minute available in most content estates.
While you are in there
Check the links resolve. The same audit turned up several pointing at a slug that had been renamed, quietly 404ing from three different pages.
Need help with any of this?
These notes are free and always will be. If you would rather someone just set it up, or you are stuck on something similar, get in touch at hello@opsira.io.