Skip to content

Instantly share code, notes, and snippets.

@vapvarun
Created April 14, 2026 04:05
Show Gist options
  • Select an option

  • Save vapvarun/2e5d5574f78db5efc3fea2f9b1be8482 to your computer and use it in GitHub Desktop.

Select an option

Save vapvarun/2e5d5574f78db5efc3fea2f9b1be8482 to your computer and use it in GitHub Desktop.
Headless WordPress with Next.js: Why and How to Go Decoupled (wppioneer.com)
# Next.js page query
query GetPost($slug: ID!) {
post(id: $slug, idType: SLUG) {
title
content
date
featuredImage {
node { sourceUrl altText mediaDetails { width height } }
}
seo { title metaDesc canonical }
author { node { name avatar { url } } }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment