{"id":25892821,"url":"https://github.com/mwmdev/wpico-child","last_synced_at":"2025-08-20T19:16:40.932Z","repository":{"id":280032712,"uuid":"887181540","full_name":"mwmdev/wpico-child","owner":"mwmdev","description":"A child theme for wpico","archived":false,"fork":false,"pushed_at":"2025-02-28T20:16:40.000Z","size":89,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T23:29:41.311Z","etag":null,"topics":["wordpress","wordpress-development","wordpress-theme"],"latest_commit_sha":null,"homepage":"","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mwmdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-11-12T10:00:40.000Z","updated_at":"2025-02-28T20:16:44.000Z","dependencies_parsed_at":"2025-02-28T23:30:16.345Z","dependency_job_id":"712de242-caa9-4123-bb8e-b1e610593438","html_url":"https://github.com/mwmdev/wpico-child","commit_stats":null,"previous_names":["mwmdev/wpico-child"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwmdev%2Fwpico-child","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwmdev%2Fwpico-child/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwmdev%2Fwpico-child/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwmdev%2Fwpico-child/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mwmdev","download_url":"https://codeload.github.com/mwmdev/wpico-child/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241572109,"owners_count":19984218,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["wordpress","wordpress-development","wordpress-theme"],"created_at":"2025-03-02T21:21:35.120Z","updated_at":"2025-03-02T21:21:35.602Z","avatar_url":"https://github.com/mwmdev.png","language":"SCSS","readme":"# WordPress Child Theme Generator\n\nA powerful WordPress child theme generator based on the [wpico theme](https://github.com/mwmdev/wpico), featuring SASS processing, JavaScript bundling, live reload capabilities, and automated setup.\n\n## Features\n\n- SASS/SCSS compilation with source maps\n- JavaScript minification and bundling\n- Live reload for PHP, CSS, and JavaScript changes\n- Google Fonts integration\n- Fluid typography and spacing\n- Modular SASS architecture\n- Automated theme setup and configuration\n- WordPress page creation automation\n- Development environment with Nix\n\n## Prerequisites\n\n- Node.js and npm\n- WordPress installation with [wpico theme](https://github.com/mwmdev/wpico)\n- Nix package manager (optional but recommended)\n\n## Quick Start\n\n1. Clone this repository into your WordPress themes directory:\n   ```bash\n   cd wp-content/themes/\n   git clone https://github.com/mwmdev/wpico-child.git\n   ```\n\n2. Run the setup script:\n   ```bash\n   ./setup.sh\n   ```\n   The script will prompt for:\n   - Theme Name\n   - Theme Author\n   - Theme Description\n   - Author URI\n   - Theme URI\n   - Primary Font (Google Font)\n   - Secondary Font (Google Font)\n   - Primary Color (hex)\n   - Secondary Color (hex)\n   - Outer Width (pixels)\n   - Inner Width (pixels)\n   - Pages to create (comma-separated)\n\n3. Start development:\n   ```bash\n   ./start.sh\n   ```\n\n## Directory Structure\n\n```\ntheme-name/\n├── assets/\n│   ├── css/\n│   │   └── style.min.css (generated)\n│   ├── js/\n│   │   ├── src/\n│   │   │   └── scripts.js\n│   │   └── scripts.min.js (generated)\n│   └── sass/\n│       ├── abstracts/\n│       │   ├── _colors.scss\n│       │   ├── _icons.scss\n│       │   ├── _sizes.scss\n│       │   └── _typography.scss\n│       ├── components/\n│       │   ├── _buttons.scss\n│       │   ├── _list.scss\n│       │   ├── _navigation.scss\n│       │   └── _search.scss\n│       ├── layout/\n│       │   ├── _footer.scss\n│       │   ├── _header.scss\n│       │   └── _main.scss\n│       └── style.scss\n├── inc/\n├── functions.php\n├── style.css\n├── gulpfile.js\n├── package.json\n├── shell.nix\n├── setup.sh\n├── start.sh\n└── reset.sh\n```\n\n## Development Scripts\n\n- `setup.sh`: Initial theme configuration\n- `start.sh`: Starts WordPress server and development environment\n- `reset.sh`: Resets theme to default values\n- `npm start`: Starts Gulp tasks only\n- `npm run build`: Builds production assets\n\n## SASS Structure\n\n- **abstracts/**: Variables, mixins, and utility functions\n  - `_colors.scss`: Color variables and palette\n  - `_icons.scss`: SVG icons as data URLs\n  - `_sizes.scss`: Spacing, breakpoints, and fluid typography\n  - `_typography.scss`: Font settings and text utilities\n\n- **components/**: Reusable UI components\n  - `_buttons.scss`: Button styles\n  - `_list.scss`: List and grid layouts\n  - `_navigation.scss`: Navigation menus\n  - `_search.scss`: Search form and results\n\n- **layout/**: Major layout sections\n  - `_footer.scss`: Footer styles\n  - `_header.scss`: Header styles\n  - `_main.scss`: Main content area styles\n\n## Development Environment\n\nUsing Nix provides a consistent development environment with:\n- Node.js 20\n- npm\n- Gulp CLI\n- PHP 8.2\n- Composer\n- WP-CLI\n\n## Available Commands\n\n- `wp`: WordPress CLI\n- `gulp`: Task runner\n- `npm`: Package manager\n- `composer`: PHP package manager\n\n## Customization\n\n1. Colors: Edit `assets/sass/abstracts/_colors.scss`\n2. Typography: Edit `assets/sass/abstracts/_typography.scss`\n3. Layout: Edit `assets/sass/abstracts/_sizes.scss`\n4. Components: Add new files in `assets/sass/components/`\n\n## License\n\nMIT License - see LICENSE file for details","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwmdev%2Fwpico-child","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmwmdev%2Fwpico-child","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwmdev%2Fwpico-child/lists"}