strarsis
strarsis
@mundschenk-at: No, I haven't yet. I have been unsure whether you or me should create it. 😸
https://github.com/WordPress/gutenberg/issues/15727
Now I encountered this issue, too, in a different context. I use `the_title` filter to add something to the markup that the Latest Posts Gutenberg core block uses (server-side rendering)....
@mundschenk-at: Any workaround for this until Gutenberg fixes this issue? I use the filter in the theme, it should not interfere with the backend.
@jasperf: This tool uses mysql dump + rsync for dumping the mysql database contents and transferring it together with the uploaded files. If the script could be modified to just...
@jasperf: Any news? This would be a great addition, also for automated remote backups with versioning. 🦄
Wouldn't it be better if the configuration would be moved from sync-all.sh to a separate yaml file? Or the domain + uploads/ directory field either determined automatically using wp cli?
@jasperf: Ideally the script can be installed globally and be used with different WordPress sites, using the wp-cli.yml file with the extra options.
@jasperf: It would be great if the commits in this repository are semver-tagged, then I can also specify a version for this tool in composer.
Currently using the non-global script (but same code): ```` ./wp-cli-transfer.sh production staging ```` ```bash #!/bin/bash DEVDIR="web/app/uploads/" DEVSITE="http://dev:8085" PRODDIR="web@production:/srv/www/example.com/shared/uploads/" PRODSITE="https://www.example.com" STAGDIR="web@staging:/srv/www/example.com/shared/uploads/" STAGSITE="http://staging.example.com" FROM=$1 TO=$2 case "$1-$2" in development-production) DIR="up"; FROMSITE=$DEVSITE; FROMDIR=$DEVDIR;...