-
-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Description
In Yoast SEO - it is possible to configure the visibility, and the title / meta tags of a taxonomy archive (either custom or category/tag) via the configuration screens.
It would be great to be able to query this information through the GraphQL schema. This should basically work similar to the way that to contentTypes works
The configuration is available at /wp/wp-admin/admin.php?page=wpseo_page_settings#/taxonomy/categories (for example, for categories) - and the schema might look something like:
{
seo {
taxonomies {
category {
archive {
archiveLink
breadcrumbTitle
fullHead
hasArchive
metaDesc
metaRobotsFollow
metaRobotsIndex
metaRobotsNofollow
metaRobotsNoindex
title
}
}
tag {
archive {
archiveLink
breadcrumbTitle
fullHead
hasArchive
metaDesc
metaRobotsFollow
metaRobotsIndex
metaRobotsNofollow
metaRobotsNoindex
title
}
}
someCustomTaxonomy {
archive {
archiveLink
breadcrumbTitle
fullHead
hasArchive
metaDesc
metaRobotsFollow
metaRobotsIndex
metaRobotsNofollow
metaRobotsNoindex
title
}
}
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels