gridsome create my-gridsome-project wordpress
Add your WordPress URL to the plugin options.
// gridsome.config.js
module.exports = {
plugins: [
{
use: '@gridsome/source-wordpress',
options: {
baseUrl: 'YOUR_WEBSITE_URL', // required
typeName: 'WordPress', // GraphQL schema name
}
}
],
// Setup template routes for any WordPress collection
templates: {
WordPressPost: '/:year/:month/:day/:slug',
WordPressTag: '/tag/:slug'
},
}
See all options.
This starter includes basic templates for categories, tags and posts.