Frequently asked questions

  • Answer 1

  • Answer 2

  • Answer 3

How to add a formatted FAQ section with Schema Markup to appear in SEO & GEO results:

  1. Add questions & answers using the Accordion block or Plain Text on the page

  2. Generate Schema Markup code on this site: https://technicalseo.com/tools/schema-markup-generator/

  3. Add the generated code to a Code Block on the page (do not check the "Display Source Code" toggle—I did so here just to illustrate the code).

  4. Check if the content is formatted correctly here: https://search.google.com/test/rich-results

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": {
    "@type": "Question",
    "name": "Question 1",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "Réponse 1"
    }
  }
}
</script>