FAQ Block
The Rank Math rank-math/faq-block outputs always-visible Q&A pairs with structured data for Google FAQ schema. Visually styled to match the details/accordion pattern but without collapse behavior — all questions and answers are always visible.
Diverges from accordion styling in two ways: the question row uses primitive.color.pale-wheat as its background (instead of the accordion’s surface-primary), and the answer panel has no background fill, letting the page background show through. This creates a clear visual distinction between question and answer.
Rank Math FAQ Block
Can sound therapy help with tinnitus?
Yes — structured sound therapy provides auditory input that helps the brain reclassify tinnitus as background noise. Combined with cognitive techniques, it can significantly accelerate the habituation process compared to passive waiting.
How long does tinnitus habituation take?
For most people, meaningful habituation occurs within 6 to 18 months of consistent sound therapy and behavioral techniques. The timeline varies based on individual factors including stress levels, hearing loss severity, and engagement with treatment.
Is tinnitus retraining therapy (TRT) effective?
TRT combines sound therapy with directive counseling and has shown positive outcomes in multiple clinical studies. Around 80% of patients report significant improvement after 12–18 months, though individual results depend on consistent use and engagement with the counseling component.
Token mapping
Section titled “Token mapping”| Rank Math class | Styled like | Token source |
|---|---|---|
.rank-math-faq-item | Accordion container | --component-details-border-* |
.rank-math-question | Summary heading | --component-details-summary-* (background overridden to --primitive-color-pale-wheat) |
.rank-math-answer | Content panel | --component-details-content-* (no background fill) |
WordPress CSS
Section titled “WordPress CSS”/* Question — warm accent background */.rank-math-question { background: var(--primitive-color-pale-wheat);}
/* Answer — no background, inherits page surface */.rank-math-answer { background: transparent;}WordPress markup
Section titled “WordPress markup”<div class="wp-block-rank-math-faq-block"> <div class="rank-math-faq-item"> <h3 class="rank-math-question">Can sound therapy help with tinnitus?</h3> <div class="rank-math-answer"> <p>Yes — structured sound therapy helps the brain reclassify tinnitus...</p> </div> </div></div>Key difference from the accordion: no <details> element, no chevron, no toggle. Static Q&A for schema markup.