# gridsome-starter-wordpress **Repository Path**: mirrors_kong/gridsome-starter-wordpress ## Basic Information - **Project Name**: gridsome-starter-wordpress - **Description**: 👩‍💻 WordPress starter for Gridsome - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-01 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WordPress starter for Gridsome [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gridsome/gridsome-starter-wordpress) ## Install `gridsome create my-gridsome-project wordpress` ## Guide Add your WordPress URL to the plugin options. ```js // 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](https://gridsome.org/plugins/@gridsome/source-wordpress). ## Included templates This starter includes basic templates for categories, tags and posts.