https://github.com/chrisvilches/upekkha
My WordPress Theme
https://github.com/chrisvilches/upekkha
accessibility alpinejs esbuild tailwindcss wordpress wordpress-theme
Last synced: 3 months ago
JSON representation
My WordPress Theme
- Host: GitHub
- URL: https://github.com/chrisvilches/upekkha
- Owner: ChrisVilches
- Created: 2024-07-07T15:42:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-15T12:13:03.000Z (about 1 year ago)
- Last Synced: 2025-08-08T18:55:55.475Z (11 months ago)
- Topics: accessibility, alpinejs, esbuild, tailwindcss, wordpress, wordpress-theme
- Language: PHP
- Homepage: https://blog.chrisvilches.com/
- Size: 1.42 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WordPress Custom Theme
## Development
Execute simultaneously:
```sh
npm run css:dev
npm run js:dev
```
## Deployment
```sh
npm run build:prod
```
## Troubleshooting
### Short Tags
Enable `short_open_tag` in `php.ini`. After that, execute something like:
```sh
sudo systemctl restart php8.3-fpm
```
### Query String
This URL should filter by both tags and search term:
```
/tag/competitive-programming/?s=some+search+term
```
Verify that the page shows:
```
Search results for: some search term
Tag: competitive programming
```
If it doesn't, then make sure Nginx has this configuration:
```
location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}
```