如何从Gatsby Wordpress获取100多个获取的数据

时间:2020-01-22 14:36:52

标签: gatsby

我想使用gatsby来获取300个WordPress帖子。但我不知道如何增加每次接受的每页数量。 这就是我使用gatsby从WordPress提取数据的方式。

   resolve: 'gatsby-source-WordPress', 
options: {

  baseUrl: '******',
perPage: 1000,

  hostingWPCOM: true,

  protocol: 'https',

  useACF: true,
  auth: {
    wpcom_app_clientSecret: "******",
    wpcom_app_clientId: "******",
    wpcom_user: "******",
    wpcom_pass: "******",

  },
.......
},

1 个答案:

答案 0 :(得分:1)

如果选中Gatsby WordPress Source documentation,则可以看到有一个增加分页值perPage的可用选项。

因此,在您的gatsby-config.js中,在其中声明插件的位置,可以执行以下操作:

module.exports = {
  plugins: [
    // ...
    {
      resolve: "gatsby-source-wordpress",
      options: {
        // ...
        perPage: 1000
      }
    }
  ]
};