Jaakko Lehtonen
Jaakko Lehtonen
Not sure about the naming though 😅
Hi, `seravo/wordpress:development` docker image ships with xdebug v3 but configuration (`/etc/php/7.4/fpm/conf.d/20-xdebug.ini`) is still for v2. This fixes remote step debugging in v3: ```bash docker-compose exec --user vagrant wordpress bash sudo...
- Updated set_step to allow float step sizes - Added validation to ensure the step size is a positive numeric value, as negative step sizes have no effect in the...
DustPress doesn't handle underscores correctly when determining archive model class names. For example, with a post type `woo_article`, it fails to find `ArchiveWooArticle` class while `SingleWooArticle` works correctly.
This change adds the #[AllowDynamicProperties] attribute to the Bodies class to address PHP 8.2 deprecation warnings related to dynamic property creation. The attribute ensures that dynamic properties can continue to...
Heya, Use of mixed return type bumps PHP version requirement to >= 8.1, while the rest of the code is compatible with PHP >= 7.1. To maintain compatibility and suppress...