Author: Erik

Since I was first given a Commodore64 as a child my love for the keyboard was more than obvious! I’m Erik and I currently work in my own company in italy, where I am deployed as a fullstack developer (or one man army as you prefer). I have been studying graphics and communication but the curiosity has led me to be involved in all aspects of web design, from design to programming. I am the author/contributor of some plugins and templates for WordPress and WooCommerce, follow me on https://github.com/erikyo

Developer Guide: Customizing CF7 AntiSpam Filters

The CF7 AntiSpam plugin now uses a modular “Pipeline” architecture. This means every spam check (DNSBL, HoneyPot, Bad Words, etc.) is an individual WordPress filter hooked into cf7a_spam_check_chain. This allows developers to: 1. The $spam_data Array All filters in the chain receive and must return a single array called $spam_data. This array contains the context […]

Oltre la SEO: Capire la differenza tra AIO e GEO (spiegate semplici)

Se hai un sito web o gestisci un blog, probabilmente conosci già la SEO (Search Engine Optimization), ovvero l’arte di farsi trovare su Google. Ma ultimamente, avrai notato che qualcosa è cambiato. Quando cerchi qualcosa su Google, spesso non vedi più solo una lista di link blu. Vedi una risposta completa, scritta direttamente dal motore […]

llms.txt: Il tuo sito sta parlando la lingua delle IA? (Spoiler: probabilmente no)

Se gestisci un sito web, conosci sicuramente il file robots.txt. È quello standard storico che usiamo per dire ai crawler dei motori di ricerca dove non andare. Oggi però lo scenario è cambiato: i nuovi “visitatori” più frequenti non sono solo i classici bot di Google, ma gli agenti delle Intelligenze Artificiali (LLM come ChatGPT, […]

SEO vs. GEO: Perché l’Ottimizzazione per le AI è la Nuova Frontiera (e Come l’Ho Risolta)

Se lavori nel digital, avrai speso gli ultimi anni a ottimizzare i tuoi contenuti per Google. La chiamiamo SEO (Search Engine Optimization) ed è stata la nostra bibbia. Ma se ti dicessi che la SEO, come la conosciamo, sta per essere affiancata, se non soppiantata, da una nuova disciplina? Benvenuto nell’era della GEO: Generative Engine […]

Costruire il Processo Logico di un’Applicazione: Dalle Idee al Codice

Sviluppare un’applicazione non è solo questione di scrivere codice: è un esercizio di pensiero logico, progettazione accurata e visione chiara. Dietro ogni app ben fatta — dalla più semplice utility alla più sofisticata piattaforma — si nasconde un processo logico ben strutturato, un insieme ordinato di decisioni e soluzioni che conducono dal problema iniziale alla […]

How to Translate WordPress Blocks: A Step-by-Step Guide for generating the json i18n file

Internationalization (I18N) is crucial for expanding the reach of your WordPress plugins and themes. With the introduction of Gutenberg in WordPress 5.0, the process of localizing JavaScript has become essential. This guide will walk you through translating WordPress blocks, leveraging the make-pot npm module. Why JSON Translation for WordPress JavaScript? With the shift to Gutenberg, […]

Turbocharge Your React Apps with React Vanilla Lazy Load

Are you looking to optimize the loading performance of your React applications? Look no further! Welcome to the world of React Vanilla Lazy Load – the lightweight, efficient solution to lazy loading images, videos, iframes, and even React components in your React projects. What is React Vanilla Lazy Load? React Vanilla Lazy Load harnesses the […]

How get Make-Pot to work with typescript ts, tsx files

TLDR;No you cannot. The WP-Cli command is a php script and relies on a external parser to parse javascript. And after year the parser hasn’t been updated to support “new” js dialects so i decided to write my own. Here how it was gone! Introducing Make Pot: Simplifying WordPress Plugin and Theme Internationalization Internationalization is […]