On Set 13, 2025, I gave a workshop at Lérez Up 2025 about creating webs, titled “Level Up!
Launch your own web kingdom, without being a vassal of platforms like Instagram or TikTok.”. You can download the slides here (in Galician language).
Tag: WordPress
-
My workshop at Lérez Up 2025
-
WooCommerce CLI WCEU 2024
You can find the documents related with my workshop (Efficiency Unleashed: A Guide to Automating WooCommerce through CLI) at WordCamp Europe in the next link :
- Slides.
- Scripts (5).
- main_script.sh, with all the steps to be able to reproduce this workshop.
- import_products.sh, to import a list of products from a CSV.
- create_fake_orders.sh, to create to fake customers and orders.
- export_pending_orders.sh, to export a list of previously created orders in pending status.
- export_customer_list.sh, to export a list of the shop’s customers.
- Data to import (2):
- pasta.ods. Spreadsheet with the 5 products to import.
- pasta.csv. CSV file with the 5 products to import.
-
Fosdem 2024
Below, you can find the slides of my FOSDEM 2024 talk: Shaping the Future: Investing Wisely in Long-Term Open Source Development with “Five for the Future”
(more…) -
WordPress and the REST API
Below, you can download the PDF (in Spanish) with my presentation used in the workshop «”WordPress and the REST API: using WordPress as a content management system in external applications” at WordCamp Zaragoza 2023.
(more…) -
Translation and localization resources
In this post, I collect some interesting resources to translate and localize software.
(more…) -
WP-CLI intro
Slides from my talk at Coruña WordPress meetup (November 3, 2022).
-
Translating WordPress faster
As Galician GTE, I translate a lot of strings from English to Galician: WordPress core, WordPress.org infrastructure, plugins, themes, … As a bilingual speaker (Galician and Spanish languages), I realized I can translate faster if I use the Spanish translations as starting point, so I develop a CLI tool to translate all WordPress stuff from Spanish to Galician, using the open-source translations created by the Spanish community (thank you, folks). A few months later, I converted this CLI tool in a website, so you can use it without any installation. And, of course, I have released it as open source (AGPL).
(more…) -
How to use PHPCS and PHPCBF with a single WordPress file
PHPCS and PHPCBF are two well-know PHP scripts used in the PHP development to (PHPCS) detect violations of a defined coding standard, and (PHPCBF) to automatically correct coding standard violations.
I usually use both with composer in my WordPress projects, adding them as dependency in the composer.json file.
But sometimes I need to check some individual PHP file without adding PHPCS and PHPCBF as dependency. In this post, I am going to explain how I do this.
(more…) -
Updating WordPress to the nightly version
Sometimes, it is useful to use the WordPress nightly version on your local environment, to avoid problems with your code in the near future.
(more…)