{"id":28186609,"url":"https://github.com/gabydevdev/wordpress-theme-starter-pack","last_synced_at":"2026-01-25T14:03:37.614Z","repository":{"id":289774348,"uuid":"972357137","full_name":"gabydevdev/wordpress-theme-starter-pack","owner":"gabydevdev","description":"A modern WordPress theme development starter pack.","archived":false,"fork":false,"pushed_at":"2025-04-30T05:46:16.000Z","size":92,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-16T07:11:30.973Z","etag":null,"topics":["advanced-custom-fields","starter-kit","translation-ready","webpack","webpack5","wordpress","wordpress-theme"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gabydevdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-25T00:23:07.000Z","updated_at":"2025-04-30T05:46:19.000Z","dependencies_parsed_at":"2025-04-25T01:49:12.532Z","dependency_job_id":null,"html_url":"https://github.com/gabydevdev/wordpress-theme-starter-pack","commit_stats":null,"previous_names":["gabydevdev/wordpress-theme-starter-pack"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gabydevdev/wordpress-theme-starter-pack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabydevdev%2Fwordpress-theme-starter-pack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabydevdev%2Fwordpress-theme-starter-pack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabydevdev%2Fwordpress-theme-starter-pack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabydevdev%2Fwordpress-theme-starter-pack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabydevdev","download_url":"https://codeload.github.com/gabydevdev/wordpress-theme-starter-pack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabydevdev%2Fwordpress-theme-starter-pack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28754101,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T13:59:49.818Z","status":"ssl_error","status_checked_at":"2026-01-25T13:59:33.728Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["advanced-custom-fields","starter-kit","translation-ready","webpack","webpack5","wordpress","wordpress-theme"],"created_at":"2025-05-16T07:10:31.628Z","updated_at":"2026-01-25T14:03:37.519Z","avatar_url":"https://github.com/gabydevdev.png","language":"PHP","readme":"# WordPress Theme Starter Pack\n\nA modern WordPress theme development starter pack with Webpack, SCSS, Bootstrap, and advanced development tooling.\n\n## Features\n\n- 🎯 Modern JavaScript with Webpack bundling\n- 💅 SCSS preprocessing with modern CSS features\n- 🥾 Bootstrap 5 integration\n- 🧰 Advanced Custom Fields (ACF) support with pre-configured field groups\n- 🔧 Comprehensive development tooling\n- 📱 Responsive design ready\n- 🎨 Code formatting with Prettier\n- 🔍 ESLint and Stylelint integration\n- 🌐 Multilingual ready with .pot file\n- 🎯 Flexible content blocks system\n- 🔄 WP-Env support for local development\n\n## Prerequisites\n\nBefore you begin, ensure you have the following installed:\n\n- [Node.js](https://nodejs.org/) (v18 or higher)\n- [npm](https://www.npmjs.com/) (v9 or higher)\n- [WordPress](https://wordpress.org/) (v6.4 or higher)\n- [Advanced Custom Fields PRO](https://www.advancedcustomfields.com/pro/) plugin\n- [Composer](https://getcomposer.org/) for PHP dependencies\n\n## Getting Started\n\n1. Clone this theme into your WordPress themes directory:\n\n   ```bash\n   cd wp-content/themes\n   git clone https://github.com/your-username/wptsp.git\n   cd wptsp\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   composer install\n   npm install\n   ```\n\n3. Set up local development environment:\n\n   ```bash\n   npm run wp-env start\n   ```\n\n4. Start development:\n\n   ```bash\n   npm run dev\n   ```\n\n5. For production build:\n   ```bash\n   npm run build\n   ```\n\n## Development Commands\n\n- `npm run dev` - Start development with Webpack and Gulp watch\n- `npm run build` - Create production-ready assets with Webpack and Gulp\n- `npm run format` - Format code using WordPress scripts\n- `npm run lint:js` - Lint JavaScript files\n- `npm run lint:js:fix` - Fix JavaScript linting issues automatically\n- `npm run lint:css` - Lint style files\n- `npm run lint:css:fix` - Fix style linting issues automatically\n- `npm run zip` - Create a ZIP archive of the theme\n- `npm run version` - Update version, generate changelog, and commit changes\n- `npm run packages-update` - Update WordPress packages\n- `npm run generate-pot` - Generate translation template file\n\n## Project Structure\n\n```\nwptsp/\n├── assets/                    # Theme assets\n│   ├── css/                   # Compiled CSS files (auto-generated)\n│   ├── fonts/                 # Custom web fonts\n│   ├── images/                # Theme images and icons\n│   │   └── icons/             # SVG icons and small graphics\n│   ├── js/\n│   │   └── src/               # JavaScript source files\n│   └── scss/                  # SCSS source files (7-1 pattern)\n│       ├── blocks/            # Block-specific styles\n│       ├── components/        # Reusable component styles\n│       ├── _variables.scss    # Global variables\n│       ├── _mixins.scss       # Custom mixins\n│       ├── editor.scss        # Gutenberg editor styles\n│       └── main.scss          # Main stylesheet\n├── build/                     # Production build files\n├── config/                    # Build configuration\n│   └── webpack.config.js      # Webpack configuration\n├── inc/                       # PHP includes\n│   ├── acf-field-groups.json  # ACF field configurations\n│   ├── acf.php                # ACF setup and functions\n│   ├── blocks.php             # Block registration and rendering\n│   ├── cpts.php               # Custom Post Types\n│   └── template-functions.php # Theme functions\n├── languages/                 # Internationalization\n├── template-parts/            # Template partials\n│   ├── content/               # Post type templates\n│   ├── flexible/              # ACF flexible content blocks\n│   ├── header-options.php\n│   └── footer-options.php\n├── composer.json              # PHP dependencies\n├── functions.php              # Theme functions and setup\n├── gulpfile.js                # Build automation tasks\n├── package.json               # Node.js dependencies\n├── style.css                  # Theme metadata\n├── theme.json                 # Theme settings and configuration\n└── wp-env.json                # Local development environment\n```\n\nNote: The `css/` directory and build files are auto-generated. Never edit them directly; modify the source files in `scss/` and `js/src/` instead.\n\n## Development Workflow\n\n1. SCSS files are organized in the `assets/scss/` directory:\n\n   - Component styles in `components/`\n   - Block styles in `blocks/`\n   - Global styles and variables in root directory\n\n2. JavaScript files are in `assets/js/src/`:\n\n   - Entry point is `main.js`\n   - Uses ES6+ features (transpiled by Babel)\n\n3. Template structure:\n   - Block templates in `template-parts/flexible/`\n   - Content templates in `template-parts/content/`\n   - Header/footer options in `template-parts/`\n\n## Code Standards\n\n- JavaScript follows ESLint rules with WordPress coding standards\n- SCSS follows Stylelint rules with standard SCSS config\n- PHP follows WordPress coding standards\n- All code is formatted using Prettier\n\n## ACF Blocks\n\nThe theme includes pre-built ACF blocks:\n\n- Hero section\n- Cards grid\n- CTA (Call to Action)\n- Text block\n- Video embed\n\nTo create new blocks, add templates to `template-parts/flexible/` and register them in `inc/blocks.php`.\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch\n3. Commit your changes\n4. Push to the branch\n5. Create a new Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabydevdev%2Fwordpress-theme-starter-pack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabydevdev%2Fwordpress-theme-starter-pack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabydevdev%2Fwordpress-theme-starter-pack/lists"}