<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Radical Wizard</title><description>Brian Powell (Radical Wizard) works at the intersection of SEO, Google Ads, marketing automation, and AI. His home on the web: projects, writing, and experiments.</description><link>https://radicalwizard.com/</link><item><title>What answer engines actually cite, and how to become the source</title><link>https://radicalwizard.com/blog/what-answer-engines-cite/</link><guid isPermaLink="true">https://radicalwizard.com/blog/what-answer-engines-cite/</guid><description>Citations are the new rankings. Here is what LLM-backed search looks for when it picks a source, and how to structure a page so it gets quoted.</description><pubDate>Sat, 04 Jul 2026 12:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Ten years ago the goal was a blue link on page one. Now the goal is being the
sentence an answer engine quotes when someone asks a question. The rules for
earning that citation are different from classic SEO, and mostly undocumented.&lt;/p&gt;
&lt;p&gt;I have spent the last few months instrumenting how LLM-backed search products
choose their sources. This is what held up.&lt;/p&gt;
&lt;h2 id=&quot;citations-are-the-new-rankings&quot;&gt;Citations are the new rankings&lt;/h2&gt;
&lt;p&gt;When an answer engine composes a response, it is not ranking ten links. It is
hunting for a passage it can quote with confidence and attribute to a source.
That one shift changes what “optimized” means:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Pages win by having a quotable answer, not by keyword coverage.&lt;/li&gt;
&lt;li&gt;One precise paragraph beats two thousand words of throat-clearing.&lt;/li&gt;
&lt;li&gt;Named entities and concrete numbers make a passage citable. Vague claims do
not.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;An answer engine does not cite you because you rank. It cites you because you
were the clearest sentence it could find.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;lead-with-the-answer&quot;&gt;Lead with the answer&lt;/h2&gt;
&lt;p&gt;Put the answer in the first line of a section, then support it. The inverted
pyramid is back, and this time the reader is a language model with a token
budget. If the model has to wade through setup to find your point, it will find
someone else’s point instead.&lt;/p&gt;
&lt;p&gt;Real heading hierarchy matters more than it used to. Retrieval systems chunk
content on &lt;code&gt;h2&lt;/code&gt; and &lt;code&gt;h3&lt;/code&gt; boundaries, so a page with clear, self-contained
sections gives the engine clean passages to lift. A wall of text gives it
nothing to grab.&lt;/p&gt;
&lt;h2 id=&quot;hand-machines-the-short-version&quot;&gt;Hand machines the short version&lt;/h2&gt;
&lt;p&gt;FAQ schema is the lowest-effort, highest-yield structured data for answer
engines right now. It hands the engine a ready-made question and answer pair:&lt;/p&gt;
&lt;pre class=&quot;astro-code github-dark&quot; style=&quot;background-color:#24292e;color:#e1e4e8; overflow-x: auto;&quot; tabindex=&quot;0&quot; data-language=&quot;json&quot;&gt;&lt;code&gt;&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;{&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;  &quot;@context&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color:#9ECBFF&quot;&gt;&quot;https://schema.org&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;,&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;  &quot;@type&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color:#9ECBFF&quot;&gt;&quot;FAQPage&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;,&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;  &quot;mainEntity&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: [{&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;    &quot;@type&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color:#9ECBFF&quot;&gt;&quot;Question&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;,&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;    &quot;name&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color:#9ECBFF&quot;&gt;&quot;What is answer engine optimization?&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;,&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;    &quot;acceptedAnswer&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: {&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;      &quot;@type&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color:#9ECBFF&quot;&gt;&quot;Answer&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;,&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#79B8FF&quot;&gt;      &quot;text&quot;&lt;/span&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color:#9ECBFF&quot;&gt;&quot;AEO is the practice of structuring content so AI answer&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#9ECBFF&quot;&gt;               engines can quote and cite it.&quot;&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;    }&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;  }]&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span style=&quot;color:#E1E4E8&quot;&gt;}&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Keep the answer text to a sentence or two. If it reads like a definition, it
quotes like one. If you want the beginner’s version of this, I broke down
&lt;a href=&quot;https://aiwizardry.me/rank-1-in-2025-beginners-guide-to-ai-powered-faq-content/&quot;&gt;how to build FAQ content answer engines actually quote&lt;/a&gt;
over on AI Wizardry.&lt;/p&gt;
&lt;h2 id=&quot;be-a-clear-entity&quot;&gt;Be a clear entity&lt;/h2&gt;
&lt;p&gt;Answer engines resolve people, products, and companies to entities before they
decide who to trust. Make that easy. A consistent name, a Person or
Organization block in your structured data, a short factual bio, and a list of
what you actually do all help the model connect your name to your topic. This
site does exactly that, which is the boring plumbing behind every citation.&lt;/p&gt;
&lt;h2 id=&quot;the-uncomfortable-part&quot;&gt;The uncomfortable part&lt;/h2&gt;
&lt;p&gt;Some of your traffic will become citations that never click through. That is
happening whether you optimize for it or not. The choice is between being the
cited source that owns the topic, or the uncited page that lost the click
anyway. I know which side of that trade I want to be on.&lt;/p&gt;
&lt;p&gt;If you want a hand pointing your own pages at this target, that is a lot of what
I do. Get in touch.&lt;/p&gt;
</content:encoded></item></channel></rss>