Skip to content

Missing information - Configuration > Taxonomies archive configuration #174

@yaronuliel

Description

@yaronuliel

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
            }
         }
     }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions