Skip to content

Releases: ashhitch/wp-graphql-yoast-seo

Enable SEO field for contentNode and nodeByUri

10 Jun 13:17
f5d277e
Compare
Choose a tag to compare

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

29 Mar 19:50
Compare
Choose a tag to compare

Changed

Bug fixes and performance

21 Mar 21:00
Compare
Choose a tag to compare

Bug fixes

14 Feb 08:15
3c6ff82
Compare
Choose a tag to compare

Few small bug fixes

check properties set
safe guard against undefined

New user fields

19 Oct 19:31
Compare
Choose a tag to compare

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

11 Sep 13:26
63fe39a
Compare
Choose a tag to compare
v4.15.1

Fix canonical in taxonomies (#111)

Fixes for Yoast v16.7

15 Jul 12:35
Compare
Choose a tag to compare
v4.15.0

Version bump 🚀

Fix undefined meta properties

07 Jun 07:02
Compare
Choose a tag to compare

Fix undefined meta properties

Filter site url

07 Jun 06:53
Compare
Choose a tag to compare
  • Added filter to change site_url (thanks @matepaiva)

Decode HTML Enities in Strings

26 Apr 09:32
78d97cd
Compare
Choose a tag to compare

Strings now get run through PHP HTML Decoder.