Releases: ashhitch/wp-graphql-yoast-seo
Releases · ashhitch/wp-graphql-yoast-seo
Enable SEO field for contentNode and nodeByUri
Enable SEO field for contentNode and nodeByUri
query get_post {
contentNode(id: "1", idType: DATABASE_ID) {
id
contentTypeName
seo {
title
metaDesc
}
}
post(id: "1", idType: DATABASE_ID) {
id
contentTypeName
seo {
title
metaDesc
}
}
node(id: "cG9zdDox",) {
... on NodeWithTitle {
seo {
title
metaDesc
}
}
}
nodeByUri(uri: "/") {
... on NodeWithTitle {
seo {
title
metaDesc
}
}
}
}
Version v4.17.0
Changed
- Ensure placeholders are replaced (thanks @BronsonQuick)
- Update option names that are deprecated (thanks @BronsonQuick)
Bug fixes and performance
- Image optimize perf (thanks @kent1D )
- Add guard against undefined user object (thanks @rodrigo-arias)
- PostTypeSEO improvements: More defensive programming (thanks @matthewgrzegorczyk)
Bug fixes
New user fields
New fields added to user/autor
schema_page_type
schema_article_type
open_graph_image
twitter_image
canonical
open_graph_title
open_graph_description
twitter_title
twitter_description
language
region
breadcrumb_title
Fixes canonical in taxonomies
v4.15.1 Fix canonical in taxonomies (#111)
Fixes for Yoast v16.7
v4.15.0 Version bump 🚀
Fix undefined meta properties
Fix undefined meta properties
Filter site url
- Added filter to change site_url (thanks @matepaiva)
Decode HTML Enities in Strings
Strings now get run through PHP HTML Decoder.