feat: Virtual page redirect, breadcrumb & menu items
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m5s

This commit is contained in:
2025-09-25 21:27:41 -04:00
parent 3f0d4dbb4e
commit e9c92840fc
12 changed files with 155 additions and 134 deletions

View File

@@ -1,5 +1,13 @@
fragment ThePage on Page {
title
template {
__typename
}
children {
nodes {
uri
}
}
groupPostPage {
sections {
...TheSection

View File

@@ -2,6 +2,11 @@
import type { ThePageFragment } from "#graphql-operations";
const props = defineProps<ThePageFragment>();
if (props.template?.__typename === "Template_VirtualPage") {
await navigateTo(props.children?.nodes[0]?.uri || "/");
}
useSeoMeta({ title: props.title });
</script>