palmiak / smartcrawl-wpgraphql

SmartCrawl 的 WPGraphQL 扩展。

安装次数: 4

依赖项: 0

建议: 0

安全性: 0

星标: 3

关注者: 2

分支: 1

开放问题: 1

类型:wordpress-plugin

1.0.1 2020-03-31 10:50 UTC

This package is auto-updated.

Last update: 2024-08-29 05:24:51 UTC


README

要求

要使用此插件,您需要

使用方法

对于文章和文章类型

query GET_POSTS {
  posts {
    edges {
      node {
        id
        title
        date
       	smartcrawl_seo{
          title
          metaDesc
          metaRobotsNoindex
          metaRobotsNofollow
          opengraphTitle
          opengraphDescription
          canonical
          opengraphImage {
            sourceUrl
          }
          twitterTitle
          twitterDescription
          twitterImage {
            sourceUrl
          }
          twitterCard
          focusKeywords
        }
      }
    }
  }
}

对于分类法

query GET_CATEGORIES {
  categories {
    edges {
      node {
       smartcrawl_seo{
          title
          metaDesc
          metaRobotsNoindex
          metaRobotsNofollow
          opengraphTitle
          opengraphDescription
          canonical
          opengraphImage {
            sourceUrl
          }
          twitterTitle
          twitterDescription
          twitterImage {
            sourceUrl
          }
          twitterCard
          focusKeywords
        }
      }
    }
  }
}

贡献

感谢 Ashley Hitchcock 的启发。