Home 🐋 Giants WordPress Planet
author

WordPress Planet

Engage with the lively WordPress community and stay updated on news, insights, and discussions that enhance your WordPress expertise.

June 30, 2025  20:34:50

In honor of Automattic’s 20th anniversary, and also since it’s been a few years, I joined Nilay Patel the editor-in-chief of The Verge on their Decoder Podcast. We talked about Tumblr and the Fediverse, how Automattic thinks about Ecosystem and Cosmos sides of the business, Automattic’s re-organization into cross-business functional teams and leadership, the vision of Clay as a personal CRM and Beeper as the super-human messaging app that puts control in the hands of users, Newspack, the future of websites, the obligatory coverage of the alleged WP Engine trademark violations and their subsequent preemptive suit, and much more. Please give it a listen! They chose the title “Why Automattic CEO Matt Mullenweg went to war over WordPress.”

Speaking of Beeper, we’re going to do a fun event for the next-gen version that’s launching on July 16 in New York City in NoHo. I’ll be there along Beeper CEO Kishan Bagaria and some of the best and brightest in New York’s tech and creative class. If you’re a Beeper early adopter (or would like to be) and want to attend leave a comment, we’ve held back some invites for cool folks like readers of ma.tt. 🙂

June 30, 2025  08:40:43
When we were first invited to be a media partner for this event, we were still known as Do the Woo. A lot has changed since then, including our name But what hasn’t changed is our excitement to support conversations that drive real impact in the open tech ecosystem. The Future Is Now—And the Philippines […]
June 29, 2025  14:21:03

Today marks a special anniversary for me: It has been exactly 10 years since I received my first props for a contribution to WordPress Core. And it was just a day before that I actually worked on that first contribution.

You may know that I am a long-term WordPress Core contributor, having contributed ever since. To celebrate this 10-year milestone, I wanted to reflect on this journey and share the 10 most valuable lessons I learned along the way. But first, let me provide a bit of background about just how I started.

How I Started Contributing to WordPress Core

It all started at the WordCamp Europe 2015 Contributor Day, an event I still remember fondly as my favorite Contributor Day experience. The atmosphere was incredibly welcoming and productive, largely thanks to the fantastic guidance of Konstantin Obenland, who was the Release Lead for the upcoming WordPress 4.3 release.

While leading the Core table, he encouraged us to test the new Site Icon feature, which was nearly ready to be committed. I dove in with a few other contributors and started testing various scenarios. I managed to uncover a minor bug that only appeared when JavaScript was disabled in the browser. I worked on a patch to fix it, and a few days later, on June 29, 2015, the feature was committed to Core with my first props included.

That first small contribution was the starting point of my long and rewarding journey. After a few more months of occasional contributions, I began contributing heavily in early 2016, focusing on the Multisite component. Over time, my responsibilities increased, eventually running team meetings and becoming a component maintainer. In November 2016, just 17 months after I had started, I was honored to be named a WordPress Core committer. And little did I know, this would be just the first chapter of my ongoing journey as a WordPress Core contributor.

Becoming a long-term WordPress Core contributor is not an easy task. But in some ways, it’s not as hard as it seems. You may think you need to be an incredible coder, and you may feel imposter syndrome. But that’s just a small part. The most important skills are interpersonal skills such as communication, flexibility, perseverance. To celebrate 10 years of contributing, I’m going to share with you 10 things that helped me in my journey the most.

1. Communicate, and Communicate Well

As a good engineer, it is equally important to discuss and reason about code as it is to actually write the code. Proactively documenting what you’re doing goes a long way. Some examples:

  • If you raise an issue, provide details and include context, including why you think it is a valid issue.
  • If you open a pull request, use its description to explain at a high level the relevant technical choices you made in the code you wrote – unless it’s a typo fix of course.
  • Unless the code is trivial or you really want to write it just to test whether it works, discuss what you’re proposing first, e.g. in a ticket. Spending hours on writing code that may not get merged can be frustrating. Gathering feedback on your idea from other contributors first will go a long way in avoiding that experience.

Other than being able to discuss code, it’s equally important to ask questions. If you don’t understand the rationale behind a decision, kindly follow up on it. If you’re attending a Slack chat where someone shares something you are missing context on, inquire about it. Every question you ask and every answer you get will grow your understanding of the WordPress project – whether its overarching philosophies, strategic decisions, or deeply technical decisions.

2. Assume Good Intent

Another important aspect of communication that is worth highlighting separately is to be respectful. Be respectful of your fellow contributors, even if you feel they weren’t. If someone disagrees with you or even if a ticket you proposed is closed without an explanation (which should not happen, but it can), don’t get angry. Don’t get defensive. Don’t get arrogant. Remain kind, and follow up. The other person probably didn’t mean any harm.

Assuming good intent means to keep calm even when your initial reaction tells you not to. Sometimes, a reply that comes across as harsh may be the result of the other contributor lacking the time to reply, which is not necessarily an excuse. Other times, it may be the result of the other contributor being from another culture where communication norms are different to yours. In either scenario, the reply that came across as harsh most likely wasn’t meant to be harsh. If you feel yourself getting defensive or angry, maybe step away and come back later.

Another way to say this is don’t take things personally. Your proposals and code may be rejected, sometimes wrongfully. Either way, this is entirely specific to the problem that you’re trying to solve. It has nothing to do with you as a person or your quality as a developer.

3. Be Persistent, As Long As Appropriate

As I previously mentioned, sometimes another contributor may have feedback or propose something you disagree with. And sometimes, even though that’s not ideal, they don’t provide adequate context – we all make mistakes. If you have taken the time to introspect and ensure your disagreement is valid, make sure to follow up. Ask the other contributor to share more context, or lay out clearly why you disagree.

For example, it’s okay to reopen a ticket that you created when it’s closed but not resolved. Just keep in mind the previous points on communication and self-awareness.

Sometimes you may be overruled, or a discussion continues back and forth a few too many times with seemingly no noticeable progress. Sometimes us humans, we simply disagree, and that’s okay. Take a moment to think how strongly you think your point is correct. Sometimes, it’s right to keep pushing. Other times, it’s right to give in. Don’t keep pushing excessively. It’s important to know when to accept another person’s decision and move on, even when you disagree. Especially in situations where several other Core contributors disagree with your point, think twice. There may be something they understand that you don’t, or you may be proposing something that is not aligned with the WordPress philosophy. Simply remember, you can ask.

4. Pay Attention to Detail

The previous points primarily focused on communication and introspection. But now let’s talk a bit about code. I’m not going to talk about algorithms or code patterns though. Something that you can try to do, regardless of how experienced you are as a developer, is to pay attention to detail and go the extra mile. Your mindset should be to get it done right, not quickly.

Sloppy code doesn’t get committed to WordPress Core. Some of the important things to look out for is code style, comprehensive inline code documentation and doc blocks, as well as test coverage. Proactively making sure your code is safe, documented, and tested shows that you care and is a great signal of a promising new contributor.

Similar care is equally important when reviewing other people’s code. Point out when any of the above are lacking or inadequate. Think about edge cases the code may not be catering for yet. Ask questions if you’re unsure. Take the time to be a thorough reviewer.

5. Think at Scale

WordPress is not just used by millions of websites, it’s used by over a third of the web. I’m sure you already know that, but it’s crucial to remember that anytime you are thinking about technical solutions. Whenever you want to make a change in WordPress, consider the entire spectrum of WordPress sites. I already mentioned to think about edge cases, but here are some more examples for what to keep in mind:

  • WordPress can run anywhere – $1000 premium hosting or a Raspberry Pi. Be especially mindful of the lower end here.
  • WordPress can be used at any scale – a small business portfolio site with five pages, or a membership site with millions of user-generated posts from thousands of users. Be especially mindful of the higher end here.
  • Many WordPress sites do not use an object cache, many are on older technologies, such as outdated versions of PHP or MySQL.

Another important aspect of thinking at scale is the impact that WordPress has on the rest of the web. WordPress can influence the web to change. A new feature or API in WordPress could lead to other platforms or even browsers considering it. Use WordPress’s scale responsibly – it can be a lever for the web as a whole, but make sure you’re only proposing a new feature to be merged into WordPress Core once it is ready for its scale.

6. Increase Scope Gradually

When you first start contributing to WordPress Core, it’s natural to have big ideas and see opportunities for major improvements, even complete rewrites of certain APIs. However, if you’re new to the project, pushing for a massive change or a brand-new feature right away is often going to result in resistance and likely won’t succeed. Believe me, I’ve been there. This can feel frustrating, but it’s a natural part of how open-source communities function.

Established contributors need to “get to know you” first. They need to assess your expertise, your motivations, your communication style, and your willingness and availability to see complex ideas through to completion. This is simply a human element of collaboration. Your idea might be entirely valid, and you might be the perfect person to execute it. But others won’t know that until they’ve had the chance to work with you and observe your contributions over time.

This doesn’t mean your valuable ideas will be rejected outright, but you might encounter hesitation or caution. A better approach is to increase your scope gradually. Start with smaller, more contained contributions: Fix bugs, improve documentation, or address minor enhancements. This helps you build trust and credibility within the community. Furthermore, by contributing to less complex endeavors first, you’ll gain additional expertise and a deeper understanding of the intricacies of WordPress Core development. This experience will likely enable you to approach those more complex ideas later with even greater insight and a stronger ability to execute them successfully than you would have had when you were completely new.

7. Find Your Niche

While it’s a great starting point to contribute to any random issues you find or care about in the beginning, it’s incredibly valuable to eventually find your niche within WordPress Core. After some initial contributions, ideally you’ll discover an area that genuinely interests you and where you feel you can make a sustained impact. To give some personal context, for me that initial niche was Multisite, as mentioned earlier. I focused on it largely because I was working with a client with a large Multisite installation at the time and wanted to improve some quirks I was encountering in the foundation. For you, it might be any of the other dozens of WordPress Core components.

Perhaps it’s a component you frequently interact with in your own WordPress development work or hobby projects where you’ve identified opportunities for improvement. The more practical experience you have with a specific part of WordPress, the more likely you are to contribute valuable enhancements and fixes to it.

Finding your niche is also important because you simply cannot be an expert in everything. WordPress Core is vast, but there are many specialized areas where dedicated experts are needed, especially where original maintainers have moved on or reduced their contributions. However, at the end of the day, don’t solely define your niche based on perceived project needs. Define your niche based on what you truly care about and are passionate about. This will make your contributions more enjoyable and sustainable in the long run.

8. Be Helpful

Contributing to WordPress Core isn’t just about pushing your own agenda or implementing the features you want to see. A crucial part of being a valuable contributor is actively being helpful to others. Being proactive and offering assistance demonstrates that you are a team player and a great collaborator, deeply invested in the project’s success. It also shows that you’re willing to take on work that might not be the most exciting for you personally, but is essential for the community as a whole.

Here are some examples of such activities:

  • Make an effort to review other contributors’ tickets, discussing ideas and technical approaches beyond your own.
  • Provide constructive feedback on pull requests, even if they’re not in your immediate area of expertise.
  • Offer to run a bug scrub for a specific component, helping to triage and categorize issues.
  • Volunteer to write summary posts for recurring team meetings, keeping everyone informed.

These are just some ideas that will signal to other contributors that you are passionate, eager to work collaboratively, and not just in it for whatever you want to see added to WordPress Core. Being a helpful and supportive member of the community fosters a positive environment for everyone.

9. Adapt Well

A common descriptor for the ideal mindset of a WordPress Core contributor is “Strong opinions, loosely held.” This highlights the importance of having conviction in your ideas while remaining open to changing them based on new information or different perspectives. Especially when you’re a new contributor, it’s easy to fall into the trap of thinking, “This is so straightforward, why wasn’t it added to Core years ago?” Usually, if it hasn’t been, it’s simply not as straightforward as it appears. This often relates back to the earlier points about understanding the WordPress philosophy, paying attention to detail, and thinking at scale.

But even as you become a more established contributor, it will always remain crucial to adapt well. Approach different opinions with curiosity rather than adversity. Sometimes, additional learnings on your own end may genuinely change how you think about a technical approach. There will be times when you disagree with a decision that a majority of other contributors support. In these situations, it’s crucial to find the right balance: know when to keep pushing back if you genuinely believe in your stance, and when to acknowledge that this is not your decision alone, but a collective one that you should accept and move forward with for the good of the project. This goes back to the earlier point about being persistent as long as it’s appropriate. The flexibility and willingness to adapt are hallmarks of an effective and respected Core contributor.

A great post that goes into more depth on this point, even though being old, is Andrew Nacin’s “The qualities of a great WordPress contributor”.

10. Build Personal Relationships

While online collaboration is the backbone of WordPress Core development, building personal relationships with other contributors is incredibly valuable. This isn’t just for your personal growth as a contributor; it also significantly enhances the enjoyment and effectiveness of your contributions. The connections you make can enrich your journey in unexpected ways, and you may make new real-life friends.

Meeting other contributors at a WordCamp or similar event is an incredible experience. Go for a run together, have a beer, do a hacking session together – whatever is fun for your group. Whether it’s finally connecting in person with someone you’ve collaborated with online for months, or meeting a mentor you’ve looked up to since you started contributing, these face-to-face interactions foster a deeper sense of community. Hanging out, sharing meals, and catching up in person inevitably changes how people see you. Having met someone in person simply tends to change the dynamic, even in subsequent online interactions.

It may not always be feasible for every contributor to attend a WordCamp or other event to meet fellow contributors in person, and that is certainly unfortunate. However, the unique understanding forged through in-person interactions is something a purely online community simply cannot fully replicate. If you have the opportunity to participate in such an event, I strongly encourage you to take it. The bonds you form will make your contribution journey even more rewarding.


Looking Back and Moving Forward

This decade of contributing to WordPress has been a remarkable journey of both personal and professional growth. I can say with certainty that I am where I am today, in so many ways, thanks to contributing to WordPress Core. The lessons I’ve shared here are reflections of countless hours spent collaborating with other community contributors, solving complex problems, building powerful features, and helping to build the open web. Contributing to WordPress Core has taught me more than I could have ever imagined when I first uploaded that small patch back in 2015.

I hope that these reflections are helpful, whether you are a seasoned committer or someone who is just considering making their first contribution. A large open-source project, especially at the scale of WordPress, is an excellent way to work on something bigger than (very likely) anything one of us could come up with by ourselves. I remain as excited and motivated as ever to continue playing my part in its future.

What about you? If you’re a contributor, what are the biggest lessons you have learned on your journey? I’d love to read about your experiences in the comments below.

The post 10 Lessons from 10 Years of Contributing to WordPress Core appeared first on felix-arntz.me.

June 29, 2025  00:50:10
Billiards balls on a billiards table. In the foreground is a while ball showing the number 13.
13” by Alexander Makarov is licensed under CC BY-SA 2.0.

Inspired by Jonathan’s contribution anniversary post of a few days ago, I decided to look up when I received my first props in WordPress.

Coincidentally, I’m also a July props baby and received my first WordPress props thirteen years ago today, on July 11, 2011 (Australian time). It was for the second ticket I’d filed, #18018, and Andrew Nacin committed the patch I’d provided a few days later.

I clearly had no idea how to use version control at the time I filed the ticket. Dion Hulse helped out by answering the question about the history of the code.

My first props was a one off and I didn’t start regularly contributing to WordPress until 2014 before becoming a committer in 2016.

I very clearly remember the day I got commit because Helen Hou-Sandí messaged me unexpectedly in the WordPress Slack. My initial assumption was that I must have done something wrong and I began reviewing my interactions with people of the previous few weeks. I was astounded to be offered commit access.

My contribution history includes

  • received props 1714 times across the WordPress-Develop and Gutenberg repositories
  • made 696 commits to the WordPress-Develop repository
  • opened 247 tickets
  • reviewed 487 pull requests
  • release lead for WordPress 6.0
  • contributed to 27 WordPress releases
  • spoken at more WordCamps and meetups than I can remember. Mostly at the WordPress Melbourne Meetup and WordCamps Sydney and Brisbane
  • organising committee member for WordCamp Melbourne 2013

My most active day on the project was April 22, 2021 which involved:

  • 64 commits
  • releasing 11 versions of WordPress
  • releasing 25 editor NPM packages

To my shame I’ve only been a release squad member once, WordPress 6.0, as I never felt ready. I’m beginning to improve on this and will be co-core tech lead on WordPress 6.7.

I’ve been incredibly lucky with my WordPress journey as many of my contributions have been the result of employers sponsoring me to make them. This is a privilege that not many contributors have and is a significant reason some of the statistics above are so high.

What isn’t reflected in the statistics is the number of friendships I have all around the world due to my WordPress contributions. I’m lucky enough to count dozens of WordPress contributors as friends all around the world.

What I didn’t realise when I contributed my first patch and received my first props was the scale of WordPress. My patch was only two lines of code but within hours of the next release it was running on websites all around the world.

When WordPress 6.4 was released, it was downloaded over 6.5 million times in the first six hours. There were 170 first time contributors to that release and I’d be surprised if any of them realised how widely and quickly their contribution would be distributed.

One of the great pleasures as committer is to give someone their first props and to allow their contribution to power a significant portion of the web. Thirteen years later, it’s a true honour to be able to pass the experience along.

The post 13 years of contributing to WordPress by Peter Wilson first appeared on his blog.

June 27, 2025  18:14:33

WordCamp US 2025 is heading to vibrant Portland, Oregon, from August 26–29, 2025! Join fellow open source enthusiasts, developers, designers, and WordPress professionals from across the United States and around the world for four days of learning, networking, and collaboration at the Oregon Convention Center.

Nestled in the Pacific Northwest, Portland is famous for its creative spirit, lush green spaces, and riverside trails, making it an inspiring backdrop for this year’s WordCamp. Whether building your first site or leading a digital agency, WordCamp US offers something for everyone, all set against the city’s stunning natural scenery.

🎟 Tickets are limited—secure yours today!

What to Expect

Contributor Day: August 26

Kick off your WordCamp US experience by giving back. Contributor Day welcomes all skill levels to collaborate on teams that help make WordPress better, from code to community to documentation. You can make a difference to the project, and build new friendships or rekindle old ones, perhaps even while enjoying views of Portland’s skyline and tree-lined streets.

Main Conference: August 27–29

Showcase Day – August 27

As part of the main conference, day one will give us a look at project showcases, discover innovative uses of WordPress, see how people push the platform’s boundaries, and get inspired to try something new.

Session Days + Expo Hall – August 28-29

Experience another two days filled with inspiring keynotes, practical sessions, and deep dives into the latest trends in web development, design, content, accessibility, and more. Hear from some of the brightest minds in the WordPress ecosystem and explore topics that get to the heart of what makes WordPress unique. Also, take some time to explore the main floors of WCUS, like the Sponsors Hall.

Networking and Community

Meet WordPress friends new and old, exchange ideas with community leaders, and collaborate with people who share your passion for open source. Enjoy daily lunches and a memorable social event, all included with your ticket. Stroll along the Willamette River or explore nearby parks in between sessions.

Venue & Accommodations

This year, we’re gathering at the Oregon Convention Center in the heart of Portland—a city known for its vibrant neighborhoods and abundant green spaces. We’ve secured a special hotel block right across the street at the Hyatt Regency Portland for convenient, comfortable lodging during your stay.

  • 🏢 Oregon Convention Center
    777 NE Martin Luther King Jr Blvd
    Portland, OR 97232
  • 🛏 Hyatt Regency Portland
    375 NE Holladay Street
    Portland, OR 97232
    Book your room!

Registration and Tickets

Registration officially kicked off last month. Secure your spot early; tickets are selling quickly.

🎟 Tickets are limited—secure yours today!

Ready to Plan Your WordCamp US Experience?

Keep checking the WordCamp US site for travel tips, to book accommodations, and to watch for the whole event schedule—coming soon! While here, why not plan to take in some of Portland’s scenic hiking trails, bike-friendly streets, or local food scene?

Stay tuned for updates and announcements on WordPress social media channels, and join the conversation.

Help Us Spread the Word!

Whether attending in person or following along online, share your experience and help welcome others to the WordPress community. Use the #WCUS and #WordPress hashtags and tell your story on social!

Portland is calling—see you at WordCamp US 2025! 🌲

June 26, 2025  15:01:50

Scott Alexander, of Slate Star Codex / Astral Codex Ten fame, ran an Everything-Except-Book Review Contest 2025 in February. The prompt: “Submit an ACX-length post reviewing something, anything, except a book.” The submissions were collected anonymously in a giant 450-page Google Doc. I don’t think the winners have been chosen yet, but there is one essay that has been making the rounds and getting shared more, and that’s Alpha School and “2-hour Learning” powered by AI, a parent’s perspective on Alpha School, a set of “AI-powered” schools in Texas and Florida.

It’s worth reading the entire essay, but I wanted to excerpt a few points I found interesting:

After twelve months I’m persuaded that Alpha is doing something remarkable—but that almost everyone, including Alpha’s own copywriting team, is describing it wrong:

  • It isn’t genuine two‑hour learning: most kids start school at 8:30am, start working on the “two-hour platform” sometime between 9am-930am and are occupied with academics until noon-1230pm. They also blend in “surges” from time to time to squeeze in more hours on the platform.
  • It isn’t AI in the way we have been thinking about it since the “Attention is all you need” paper. There is no “generative AI” powered by OpenAI, Gemini or Claude in the platform the kids use – it is closer to “turbocharged spreadsheet checklist with a spaced‑repetition algorithm”
  • It definitely isn’t teacher‑free: Teachers have been rebranded “guides”, and while their workload is different than a traditional school, they are very important – and both the quantity and quality are much higher than traditional schools.
  • The bundle matters: it’s not just the learning platform on its own. A big part of the product’s success is how the school has set up student incentives and the culture they have built to make everything work together

…Yet the core claim survives: Since they started in October my children have been marching through and mastering material roughly three times faster than their age‑matched peers (and their own speed prior to the program).

One of the surprises doesn’t come until Part 4 of the essay:

Incentives

People REALLY don’t like the idea of incentivizing kids to learn.

Roland Fryer, who has done extensive work on what works in incentivizing students, quotes a 2010 Gallup poll that found that only 23% of American parents support the “idea of school districts paying small amount of money to students to, for example, read books, attend school or to get good grades” (76% opposed the idea with only 1% undecided).

There are not many things that 76% of Americans agree on. Only 69% of Americans believe another Civil War would be a bad thing. Only 78% agree that American independence from Britain was the right choice. People REALLY don’t like paying kids to read books.

I hope that gives you enough of a hook to read the entire essay, it was quite good and provocative to many assumptions I’ve had about education.

June 26, 2025  09:00:00
In Open Talk on Open Source, Adam Weeks, Tammy Lister, Zach Stepek, and Tim Monner discuss the importance of contributing to WordPress, exploring various forms of contributions and the idea of sponsored support.
June 25, 2025  14:00:00
Transcript

[00:00:19] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.

Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case a debate about whether or not there’s a place for accessibility in a canonical plugin.

If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.

If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.

So on the podcast today, we have Joe Dolson and Jonathan Desrosiers. As you’ll hear in their podcast introductions, both Joe and Jonathan are veterans of WordPress, committing to Core in different ways. They’re deeply committed towards making the platform more useful for all users.

This episode is all about exploration rather than answers. Joe and Jonathan discuss the world of canonical plugins, a special category of plugins maintained by the Core team. They’re designed to be as reliable and secure as features found in WordPress Core itself.

The discussion unpacks exactly what defines a canonical plugin, how these plugins have evolved out of the traditional feature plugin model, and what it means for users and contributors alike.

At the center of this episode is accessibility, should accessibility enhancements remain a primary concern within WordPress Core, or is it time to start developing them as canonical plugins? Joe and Jonathan discussed the pros and the cons of both options, referencing technical challenges, project philosophies, and the ever-changing legislative environment, especially with tough new regulations in Europe.

They consider the discoverability of canonical plugins for non-technical users, potential overlaps and division of labour between plugins and Core, and the moral imperative of making websites accessible to all.

We also touch upon practical examples, from the WordPress video block to the Performance Lab plugin, and weigh up how cadence, stability, and focus can differ outside the Core.

The conversation also goes beyond theory, delving into the real life impact accessible technology has, from legal requirements, to personal stories and the broader mission of democratizing publishing.

Whether you’re a developer, a site owner, or someone interested in the ethical questions at the heart of open source software, this episode is for you.

If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.

And so without further delay, I bring you Joe Dolson and Jonathan Desrosiers.

I am joined on the podcast by Joe Dolson and Jonathan Desrosiers. Hello both.

[00:03:35] Joe Dolson: Hello. I’m so glad to be here again.

[00:03:37] Jonathan Desrosiers: Likewise.

[00:03:38] Nathan Wrigley: We’ve had quite a preamble chat prior to recording this. This is going to be an exploration podcast. I don’t think we’re going to arrive at the destination. This is, I think about the journey.

But it’s going to be a conversation about something called canonical plugins. Dear listener, if you don’t know what that means, hold on. But also about accessibility. Prior to that, probably a good idea to get both of your biographies so that we know a little bit about you, and your credentials in the areas under discussion. So should we start with you, Jonathan, just a little bio. Tell us who you are.

[00:04:08] Jonathan Desrosiers: My name is Jonathan Desrosiers. I am a full-time sponsored Core contributor to the WordPress project from Bluehost. And I spend a lot of my time on the day to day, the work that keeps the project moving. That may be lesser seen, like our processes, our testing frameworks, helping the release squad with the resources, make sure they have the resources they need to do their jobs well, and ultimately produce good releases of WordPress every time.

[00:04:35] Nathan Wrigley: Nice. Thank you so much. And Joe.

[00:04:37] Joe Dolson: So I’m a part-time Core contributor to WordPress. I’m also a Core committer and I’m sponsored by GoDaddy and Kinsta. I mostly work on accessibility, so I help make all aspects of the project more accessible, including Core, Gutenberg, wordpress.org itself and all of those related bits and pieces.

[00:04:56] Nathan Wrigley: Okay, so we’ve established your credentials. The topic under discussion, I’m going to try and find the post in the Slack channel, which kind of promoted this whole thing, but it goes back a few months now. And the topic under discussion today is about whether or not it would be a good idea, I’m going to say, let’s go with that, an interesting idea, a good experiment, who knows, to put accessibility work into a plugin of a special type called a canonical plugin. So we’re used to hearing about plugins, perhaps not so much canonical plugins. So let’s make that the first port of call. What is a canonical plugin?

[00:05:34] Joe Dolson: I mean, I think we can kick this off with the idea that we don’t really know. But there is a long history in the project of essentially Core sponsored plugin projects that are used for specific features or provide various functionality. And then sometimes they get merged into Core and sometimes they don’t. It’s highly variable.

So there is a deep reality that this particular proposal, we don’t have any clear idea of what it’s actually proposing. But I think it’s good to talk about some of the historical canonical plugins that have already been used.

One great example I think is the WordPress Importer. It’s a plugin. It’s installed on demand into your dashboard when you decide to go to import something. And it’s an extremely standard tool. And it’s kind of the classic idea of something that isn’t needed in Core permanently, but is heavily used and really needs to be something that is maintained by the project.

[00:06:29] Jonathan Desrosiers: Yeah, I think it goes back, like Joe said, pretty far in that in the past we’ve had this concept called feature plugins. And so the initial idea behind those was to begin work on a feature that would span many releases and to get it into a refined state where it was ready for primetime to be included, you know, and shipped to the world.

So some good examples of this are the MP6 plugin which, re-skinned the dashboard in the modern way that we know today.

The REST API started as a feature plugin project. There’s many more to that effect. Simple XML Sitemaps, I believe started as a plugin as well.

I think of this in the way that canonical plugins are always feature plugins, but feature plugins are not always canonical. And so what I mean by that is a feature plugin can always become a canonical, but that may not be the case. It may end up in Core and we don’t need it long term. Or we could decide that it’s just not a good fit and it could become a canonical, and we maintain it long term as that add-on type plugin that you would use, that’s officially supported and maintained.

And so even before the suggestion to put accessibility into a canonical plugin, there were a few posts from Matt that suggested that we revisit this concept of feature plugin. And I think it’s just, canonical is just in some ways a new name for it in the sense that, you know, an SEO, canonical is you put the canonical tag and it points to the one true page on the internet that represents that content, right?

And so it’s similar to that, in that we want to have these canonical plugins that are the one true place you should be able to rely on for functionality that adheres to the project philosophies in the same way as if it were in Core itself.

[00:08:07] Nathan Wrigley: I suppose my supposition about canonical plugins are that they encapsulate important things that could be in Core. You know, if the universe was slightly different, they could easily be rolled into Core. But also importantly, they receive security updates and the same kind of inspection that Core might have. So it’s not like they’re just sort of left to fester.

On a regular basis, they would be inspected, updated in much the same way that Core would be. So it’s almost like Core, but kind of install it yourself. But the importance being that you can utterly rely on it, if you install it to be dependable, to be updated, to be secure. Have I misremembered, that or is that a part of the definition of a canonical plugin?

[00:08:53] Jonathan Desrosiers: No, that’s accurate. We give you that same commitment to backwards compatibility. The project philosophies, as I mentioned, the plugins that are maintained that are released as community plugins are covered by the Bounty Program and our Hacker One program as well. So there’s incentive for people to find security vulnerabilities and responsibly report them and work with the security team to fix these for the community.

That’s right in that you are getting kind of like that badge of honor, like we promise, guarantee type thing, that we’re going to do our best to give you the best plugin for this particular feature.

And the importer I think is a great example of that, right? They’re not all great, in good shape, and part of that is because some of them are importing from software that’s also, that’s really old and outdated, right? And the concepts that they have and the data structures.

But we have almost a dozen importer plugins that are, in a sense, canonical, and they are the go-to plugins to import your content into WordPress. I’m hopeful the Data Liberation Project will help make those more refined and make them easier to use and less prone to issues, yeah. But, yes, in theory we do give you that guarantee and that backing.

[00:09:58] Joe Dolson: I mean, one of the reasons I did bring up the importers is because I think they’re actually a really good example of something that isn’t getting the care that it really needs. I mean, they’re stable and they’re functional, but there are certain things that they really don’t do very well.

And one of them is, like if you’ve got a site with say, 10,000 users, you just can’t use the importer plugin. Because it generates these select dropdowns to assign your posts to a particular user, and the performance on those is ludicrous when you’ve got a page that has 100 dropdowns with 10,000 items in them.

This is the sort of thing that I think everybody would like to see worked on more in the world of canonical plugins. And that’s, I think one of the fears that maybe some people have about moving more stuff into canonical plugins, is this idea that they might not get the care that we theoretically promise.

Because I do think, the idea of canonical plugins, we absolutely do promise those security updates and making sure all of these things are solid, but I’m not sure we’ve always carried out on that as well as we could.

[00:11:03] Jonathan Desrosiers: You said something that resonated too in that. So one of the Core philosophies is the 80 20 rule. And so we want to make sure that the things we merge into Core work for the majority of our users that use our software. And so the same kind of holds true for canonical plugins in some ways. Not that we want to plug in that 80% of people will use, because then it would belong in Core, but 80% of the people that want that feature, the plugin should be relevant to them, right?

And so in the sense of imports being too large, the canonical plugin is a great tool and it’s the defacto recommended way, but it’s may not be the right tool for your instance. And so in that instance of a large import, WPCLI is probably more something that you would want to use in that case, because it’s not subject to timeouts and there’s just different technical boundaries that it works within.

So we want these canonical plugins to be the defacto, but they’re not the end all be all, and they don’t cover every situation. But we want to cover the majority of situations for as many WordPress users as we can.

[00:12:00] Nathan Wrigley: Okay. So I think we’ve established what a canonical plugin is, and I’m going to summarise it as follows, basically something that you can depend upon. I would summarise it just that.

[00:12:08] Jonathan Desrosiers: Something that tackles a specific, or group of features.

[00:12:10] Nathan Wrigley: Right. It’s got a specific feature. It could have gone into Core, but it was decided not to go into Core, but you can hopefully rely on it. Although, Joe made a very good point that, you know, reliance is an objective thing.

However, what we’re talking about today is accessibility. We’re in the year 2025. It’s June, 2025. We’re at WordCamp Europe. And it feels like the train over the last few years has really pushed accessibility to the front. I think any web designer, developer, in the year 2025 who doesn’t have accessibility right at the front of their mind is kind of missing the point.

The legislation in Europe is coming thick and fast, I imagine in other jurisdictions and other parts of the world, the same will be true. So I guess the question, and I’m going to ask this to Joe first, given his background of committing to Core in the accessibility arena. What do you make of this? The idea of pushing something to this canonical plugin that previously was the domain of Core.

Does it feel a bit like it’s, I don’t know, that the importance of it is being relegated in some way? Do you feel it’s like undermining? Because we should all have an accessible approach to WordPress development, website development, but in this way, well, it’s not important enough, if you like, to be in Core?

[00:13:30] Joe Dolson: So I think there’s a lot to unpack here. One of the first things I need to say is, first I’m going to, I have just a very slight quibble with your definition of a canonical plugin because there are kind of two different paths. There is the whole canonical plugin, which is intended to always stay outside of Core, but there’s also the canonical plugin, which is used for experimental progress.

And that’s something like the Performance Lab plugin, where it’s a whole bunch of different pieces, and they’re targeted for probably being merged into Core, and this is an experiment ground where we can figure out, is this really working? Is this the best way to do it? Is this suitable for Core? Maybe it should be different in the plugin than it is in Core. Like, for example, what was it that was just shipped? Speculative loading.

They used different rules in the plugin than they ultimately added to Core. It was just a less aggressive version of speculative loading. And I think that can be a very reasonable thing. And that can apply to accessibility too, as accessibility is a spectrum. We’re not talking necessarily about all accessibility is just, this is accessibility, it’s all required. Accessibility covers a gamut from, this is absolutely mandatory, basic level stuff, to this is pie in the sky. To even, basically there are some accessibility features that are literally contradictory to each other. In order to make something optimal for this population, you have to implement something that is actually not what this other population needs.

So there’s a lot of complexity there. The idea of putting accessibility into a plugin can lead to some very negative consequences. It is not necessarily inevitable. So there’s a lot of difficulty in just determining what is an accessibility plugin? What is it supposed to do? Is this something that’s supposed to change the front end? Is it supposed to change the back end? Is it implementing editor tools? Is it implementing new features? Is it fixing things that already exist? And I think all of those are complicated unanswered questions.

So kind of figuring out that path and, what is actually intended in this idea of an accessibility plugin? What are the problems it’s trying to solve? Is the first question mark. And we don’t really have that. That hasn’t been worked out in any way.

[00:15:44] Nathan Wrigley: So the complexity, and thank you for the clarification, the complexity there, the devil is in the detail. I guess Core in a sense is, if it’s going to ship in Core, it’s there. There’s a menu for this and a toggle for that, and a switch for this, and what have you. What you are saying is the landscape of accessibility is much more complicated than that. And so maybe, in a way, if it was pushed over to a canonical plugin, you could have a more a la carte approach to it. I don’t know if that’s where you were going.

[00:16:14] Joe Dolson: That’s conceivable. So, many years ago, Matt proposed the idea of an accessibility, it wasn’t a plugin at the time, but it was the concept of an alternate admin that would be a simplified admin. And, you know, I pushed back on that, and I still would if it was being marketed as an accessibility feature. There is a value to a simplified admin. It’s just that it can’t be considered accessibility focused unless it actually does achieve all goals. But simplification is in itself a goal. Making something easier to use, and having an option where somebody can do something in a simplified way, is extremely valuable.

[00:16:52] Jonathan Desrosiers: Yeah, just some thoughts to that. So I’m a Core committer and I make changes to the software that everybody uses and needs to be compliant, right? I’m not an accessibility expert by any means, but I’m versed in the concepts.

So one of the differences that could be in a canonical plugin for accessibility, Core, our coding standards for accessibility, we adhere to the web content accessibility guidelines, version 2.2 at Level AA, right?

But there’s different levels, there’s different versions of that. And so with different levels come different requirements, and different strictness to how you approach different interfaces. And so maybe a canonical plugin could allow you to adhere to different levels that perhaps your organisation needs to adhere to, that the 80% of users don’t necessarily need to.

Another thing that, I wanted to mention this because I always think of this. We, by default, think of accessibility as someone in a wheelchair or someone that’s blind, but you could break your hand, you could fall down the stairs, you could get eye surgery and have to wear a patch for a month. And so it’s not just permanent, it’s temporary disability as well. And I like to try to remind myself of that because you don’t need accessibility until you do, and then you’re glad it’s there when it’s there, right?

My grandfather was legally blind and he was a veteran. So he went to school and he learned how to use a computer. And he had a computer with like JAWS on it, and it would read it to him, and we’d send each other emails and stuff. I always like to think of him too, because if you know someone in your life that has accessibility needs, it also raises that importance to you as well. So, if I don’t do this in the right way, my grandfather won’t be able to use this website, or communicate with the world in the same way that I can.

And so finding those, I think that when you talk about accessibility, and this isn’t directly related to what you said, Joe, but I wanted to mention it. But if you can humanise it in some ways, in a way that’s in your life that you can relate to, it helps you find the reasoning in why it’s important, why these discussions are important, right? That we approach these problems in the right way, and that we meet the acceptable standard.

[00:18:57] Nathan Wrigley: In the end, this will be a binary decision. It either will be a canonical thing at some point in the future or it won’t, I guess maybe.

[00:19:05] Jonathan Desrosiers: Will it? I mean, we might merge some of it into Core or we might choose, it doesn’t fit in a plugin, right? And that’s kind of where that gray area is. And in some ways, canonical plugins take up a little more time because we are having these discussions. Like, we feel strongly this should go in, someone else may not. We have to work to get a consensus, and once we reach that consensus, we have to, I talk about this in my talk about how we make decisions, but we disagree and commit. And so you can state your disagreement, but then it’s important that we move forward together. Building that consensus and deciding on the right path, even if you disagree.

[00:19:39] Nathan Wrigley: Does the canonical option then, does that allow for more flexibility? So as an example, you could release, I don’t know, every two weeks, or every month or something like that. Whereas at the moment, we’re recording it in June, we don’t need to get into it, but we’ve got a different, a very different cadence for how often Core is being updated. Maybe that will change in the future, maybe not.

But with a canonical option, it would be possible to do any cadence you liked. And also, I suppose you could be a little bit more a la carte because you could have a variety of canonical plugins wrapped around the theme of accessibility. So, yeah, I guess what I’m asking there is really, does the cadence of a canonical plugin allow more flexibility?

[00:20:21] Jonathan Desrosiers: Absolutely. Whether we’re releasing once a month, or we’re releasing once a year, you can release a canonical plugin as often as you want, whereas Core has a much more predictable, well, not that the canonical plugin releases won’t be predictable, but it has a much more standardised schedule, I guess.

And so you could release once a week for your canonical plugin, and then if we have a Core release every three months, that’s 12 weeks, you have 12 releases of that canonical plugin that you could potentially refine issues. Whereas if you released it in the one Core release, you’d get all that feedback at once instead of dividing it up and making adjustments and going from there.

[00:21:00] Joe Dolson: So just to pose an example of something that I think actually is extremely suitable for an accessible plugin, and this is because, you know, I actually have written this. So let’s take for an example, the WordPress video block. It is extremely basic. It produces a video element and it gives you options to upload various tracks that are used in that video element. It is just the raw HTML 5. That’s what WordPress produces in the block editor.

Now, is it appropriate for WordPress Core to make a decision about how that video block is actually going to be rendered as it is with this raw HTML 5 element? It’s rendered differently by every browser. They have their own rules, their own way of doing it. That’s what it’s going to do. You can make it much more accessible, because there are a lot of things that those native blocks don’t support, the native video element doesn’t support.

In the past, WordPress did use MediaElement.js to render videos. And I actually think getting rid of that, and just using the raw video element was a good thing. But it’s not the most accessible way of viewing video. So is it something that we should do in Core? Should we dictate a player interface, or should we leave that raw in Core? Core just produces a video element, and then a plugin can enhance that to make it more accessible.

I’m also the lead developer for an accessible media player called Able Player. That’s a completely separate JavaScript project that has nothing to do with WordPress, but I have got a WordPress plugin for it, which basically just says, hey, here’s a video block, I’m going to re-render it using Able Player.

[00:22:37] Jonathan Desrosiers: I think if you want another good example of what a canonical plugin can be in the framework it can operate within, look at the Performance Lab plugin. The Performance Team has this plugin, and initially it had all these different features in it, and then we were trying to merge in support for the WebP image format in Core, and we realised it needed a little bit more time. And Matt suggested that we break them out into more finite plugins.

So the Performance Lab feature plugin has, or canonical plugin, has a framework and then there are sub plugins that you can install for modern image formats. Pre-loading the images, there’s an accessibility feature where it shows you the color, the dominant color of the image, and it’s there until the image loads. And so that way it’s visually represented. And so that’s another good example of that.

And one example that I’m wondering may be a good use of canonical plugins is the new AI Team. And so we’re at a point where we need to do some research and figure out what, in the context of WordPress, is needed for AI to flourish, and WordPress to be AI friendly. And I think that in some way, that will end up being a base foundation, some classes and some ways to interact with your content and your site, that can communicate with different models.

So perhaps some canonical plugins could be one for each of the popular models. And so you have this data transport layer that passes your site’s information to these plugins, and then it connects with ChatGPT, or whichever your preferred model is. And so within that you could have settings. The reason why I brought up the Performance Plugin is there’s settings within it. So for the modern image format, you could say, I only want WebP, or I only want JPEG XL or AVIF. You can decide which ones you want. But if that were to get into Core, that’s not the right thing to say like, I do or I don’t want this.

Another philosophy is decisions not options. We don’t want to overwhelm users with this. And a good example of this is, should this site be indexed by search engines? And if you disable that, it also disables your sitemap. And so making those intuitive decisions on behalf of the user and what they’ve done, the actions they’ve taken, we don’t want to overload them with options.

And so in canonical plugins, you can be more, you don’t have to follow that as strictly, because the point is that it’s a plugin that’s configurable, that we’re testing different things in different ways, and finding out what works for which groups of people, and in what ways, and gathering feedback around that.

Back to the point about, one other thing I wanted to mention too, is that one complaint I’ve always had with canonical plugins is that it’s very difficult to know about the experiences of the people using them. So for example, we had a plugin for a while that they want to, thankfully they want to rekindle it, is the Design Experiments plugin.

And you would install that, and there were, you know, at any given time, a couple of 2, 3, 4 different design experiments in the plugin. But we never knew who had which experiments active, which ones they disabled. Did they have bad experiences? And that’s why they turned it off. Did they like it? Did they prefer it?

We almost need to have some type of either AB testing within the plugins themselves, or a way to gather that feedback from the people that are using these canonical plugins. This is especially true when it’s a feature plugin that we may want to emerge into Core.

And so I did bring up to Matt in one of our recent meetings with the Core committers, and he was open to exploring the idea of better ways in canonical plugins to gather that feedback, because they’re now of a renewed importance in our community and how we foresee maintaining things.

We’re quite large, and we need to start saying no to more things in some ways. And so this is a great way to push it to a canonical plugin. Like, we don’t think that’s a right fit in Core, it’s too much, we can’t handle it. But create a community maintain plugin and we’re happy to stand behind it with you.

[00:26:32] Nathan Wrigley: I’m going to try and get this out. I’m not sure I’m going to encapsulate it right. I’m going to offer this one to Joe first. And that is the legislation in the landscape of 2025. And we know that in Europe in particular, a lot of this stuff is mandated. Obviously there’s degrees to that, but there’s a lot of mandatory stuff coming down very, very soon.

Given that, putting things into a canonical plugin where you can pick and choose, I have not installed that, I have installed that, what are your feelings about that? Is there some, I’m going to use the word core, set of features around accessibility that really where we’re at now, there’s just no choice, it just has to be in Core?

Because the concern that I have perhaps is, how will you discover this canonical plugin? How will it surface itself? The three of us will find it, because this is what we do. But the regular user who’s just got a brick and mortar store, they want to put a WooCommerce site out there, just something quick and easy, where are they going to even find out about these canonical plugins?

[00:27:32] Joe Dolson: And I do think this is a big part of what comes down to that question of, what does the accessibility plugin, what does it do? Because that is where things can really go kind of horribly wrong.

When we’re talking about the accessibility of existing WordPress interfaces, how you actually interact with the admin, I don’t think there’s anything there that should ever be in a plugin because the Core code has to be accessible.

You know, Jonathan mentioned that we’ve got this commitment to WCAG 2.2 at Level AA. I would say that we haven’t quite achieved that. It’s a goal, but I mean, the reality is there’s still a lot of legacy interfaces that our, I find new things every day. It’s just the reality. But those need to be fixed in Core. They should not be part of a plugin.

So, a plugin should be something that enhances something in a meaningful way that perhaps doesn’t apply to all situations. That’s one of the reasons I brought up the video element, because one of the interesting exceptions in WCAG is that you are not responsible for the accessibility of browser defaults. The browser is responsible for that.

And so if you are using a video block, and it’s just the video element, that is actually something that should pass. It’s not necessarily accessible, that’s up to the browser, but it’s not the responsibility of your site. And that’s a really fuzzy area from the law because, yes, you should still fix it.

[00:29:00] Nathan Wrigley: Imagine a scenario where we have a canonical plugin for accessibility. So we have WordPress Core, and then a canonical plugin for accessibility. WordPress Core is evolving all the time. No doubt missteps will be made. People like you, Joe, will be going in and saying, okay, this needs to be adapted, this needs to be amended.

And then on top of that, we’ve also got this complete other path of developing the canonical plugin side of things. There’s two strains of work happening now. So that’s just interesting. I don’t know whether that’s good or bad.

[00:29:30] Joe Dolson: So one thing I will say is, you know, the bulk of the new development in WordPress is in Gutenberg. There’s no need for a canonical plugin to handle accessibility things in Gutenberg because honestly, that should just go into the plugin Gutenberg. If there’s something in Core that needs to be fixed, you should be able to install Gutenberg and be able to move forward. I think that would be reasonable. I don’t think that’s a practical path to have a separate accessibility canonical plugin that fixes issues in Gutenberg problems for Core. I mean, I can’t see that as making any sense.

[00:30:04] Jonathan Desrosiers: In some ways we have to just weigh the benefits with the effectiveness and the time and the resources available. Some other ways that you can find canonical plugins, when you click add plugin on your site, there’s different tabs at the top, like featured, popular. One of them is featured, and so that is one that when we have canonical plugins, we want people to adopt or use, we add plugins to that tab.

So the performance plugin is there, Gutenberg is there because we want people to be testing those up and coming changes. To the point of the, we’re not being fully compliant with that standard, it’s, we have to remember that this constant churn going on with a code, right? There’s new code coming in, there’s old code being removed. And so in a way the goal line is still the same, but we’re getting peaks and valleys that we have to, they suddenly appear and we have to tackle them as we go.

I think for discoverability, it depends on the ecosystem in some ways. For example, as an American, you know, I’m not always, sometimes I hear of new legislations from EU and I say, oh, what are they up to now, right? It’s more things I have to do to follow the rules. But I think about maybe an American business owner, or American site owner, and sometimes it’s not clear. What happens if I’m in Europe and then I visit my site when I’m traveling, right? Does that open me up for legal action. If someone happens, if I make a very specific or rare type of trinket, and people in the EU find it, does that open me up to legal problems?

And so these are things that the normal site owner, I just want a website, I just write on it, right? They don’t think about this stuff. And so, in addition to being compliant with these guidelines that we strive to achieve, we need to think about those decisions, not options type things.

Another philosophy is to be simple, strive for simplicity. Most people don’t know what an XML sitemap specification is, or how to implement it, or what should go in it. And so we just make the decision to handle that stuff on their behalf. And if they need to, they can install a plugin to customise it, right?

So the same is kind of true in this sense. And if the world is susceptible to, or responsible for adhering to certain things, and we can reasonably help them without them having to find certain things to install or configure, then maybe it’s the right thing to put that thing into Core, right?

Perhaps it falls on the shoulders of hosts, where if the customer has an EU address, they install the accessibility canonical plugin, depending on what’s in it and what’s not. It’s likely not. We should be deliberate about what goes in Core and what goes into the accessibility plugin and for what reasons. But we also should be conscious that, as a community, we have to also help these non-technical users by making decisions for them when we know that it’s a problem.

Like, our legal team says, yep, any site that potentially gets EU traffic, they have to have this, or they have to block EU or whatever it is. We can outline these situations and make the best decisions for our customers and our users, given those criteria that we are aware of.

[00:33:07] Joe Dolson: It’s interesting you say that because one of the things you particularly dove into there is the idea of an accessibility plugin being something for the front end. And that is something that is actually fundamentally challenging. Because when it comes right down to it, we don’t know what’s on the front end. And accessibility is an incredibly difficult problem to solve when you’re kind of just trying to do automation on something that you don’t know.

You know, there’s a lot of accessibility plugins out there that are already doing that sort of thing. Overlay plugins. They are famously iffy, because they really don’t solve most of the problems. And some of them actually introduce more. And that is the thing that I most want to avoid, is that we create our canonical plugin and it’s just screwing up people’s websites.

[00:33:59] Jonathan Desrosiers: We’ve all installed a plugin that has way too many options, way too many features, and it doesn’t do any of them well, right? That’s not what a canonical plugin should be. In instances where there are many features, like the Performance Lab, there’s a framework perhaps, and then there’s sub plugins that do it, right? We don’t have an importer plugin that has every importer in the same plugin. They’re in specific plugins so that it can be more targeted, more focused on that specific outlined goal or focus area.

And so that, yeah, that speaks to me, because we definitely don’t want to mimic some of the plugins that are out there where they try to adhere to cookie laws, and then they also try to adhere to popups and, you know, Consent API and all that type of stuff. And so we want to make sure that we’re dividing those problems up into meaningful chunks, but chunks that we can manage reasonably and not be a runaway train in some ways.

[00:34:47] Nathan Wrigley: I was thinking about this last night and I was thinking, why does this conversation matter to me so much? And it came down to the fact that if we were having this conversation about a canonical plugin for, let’s say, performance or SEO, it would be intriguing, but there’s no moral component to it. You’re just serving a bunch of people who would like a more performant website. Well, that’s great. That will increase your SEO. No doubt, more traffic will come to your website.

But there is a moral component here, and there are people whose lives will be immeasurably better if WordPress is, and I’m doing air quotes, accessible. And so that just makes this whole thing so much more important and impactful. So there’s no question there, it’s just an observation.

There’s a different wrinkle here. There’s just some other thing. You know, you can imagine the panoply of different people trying to use websites. The frustration, the endless frustration that’s being caused by things because they’re not configured in a way that they can use them. And it would be a shame to miss this opportunity. And I don’t know what the right answer is here. I just know that there’s this moral component that makes this much more of a hot button topic than anything else. So that’s my piece, but if you want to respond to that.

[00:36:03] Jonathan Desrosiers: I just left the keynote this morning by Noel Tock, and he spoke a lot about the impact. I try to illustrate this often, and he did a much better job than I’ve done before. He’s involved with a lot of organisations in the war affected Ukraine. And so he covered a half dozen organisations that are saving lives, rescuing animals, providing humanitarian relief, and they run on WordPress. And so accessibility lends to that in some ways, because you don’t know where a group is that has a need, and the free software could help them with that need, and in what ways and what impact that could have on them.

Sometimes I think about how certain things overlap. And so I picture two circles, one for accessibility, and if you were to make a diagram of how it overlaps with democratising publishing. In many ways, it almost completely overlaps that circle. There’s something democratising with being accessible. I mean, it’s in the name, it’s accessible to as many people as possible. And so I think that, whether you know it or not, that probably in some ways is eliciting that feeling, right, of we all believe in this project where we all want to do good in the world. We want our software, and our community, to have an impact. And in many ways, accessibility leads to that mission that we all have.

[00:37:26] Joe Dolson: And I do want to say that, as it stands right now, when we’re talking about the admin of WordPress, it’s already one of the most accessible content management systems out there. We have done very good work there.

The front end is kind of a completely different story, and that ultimately is the fact that Core doesn’t control very much of front end, which is both one of the incredible powers of WordPress. It’s got this amazing degree of flexibility, and you can do almost anything with it. And it’s also one of the curses, because if we want to globally make the front end of everybody’s website better, there is very little we can do.

That’s where I kind of feel like our accessibility efforts most are needed right now is just kind of getting plugin developers, getting theme developers, to be better. Make better choices and provide better options in their tools.

[00:38:18] Jonathan Desrosiers: It is true that we don’t control the front end, but one of the features I love in Gutenberg is when you’re selecting the text colour and the background colour of a block. If you select light blue and dark blue, it says, hey, this is not accessible, it doesn’t meet the guidelines. People are going to have a hard time reading this.

I often think about ways that maybe, one I had suggested before which hasn’t been implemented yet, some issues take many years to flesh out and be adopted, if at all. But one of them is perhaps we do another notice like that when someone is entering an alternate text for their image. You know, maybe they just put jpeg 123, right? That’s not what alt text is meant for. It’s meant to describe what’s in the picture in case someone can’t see it, or it’s not visible.

And so it should be, Nathan Wrigley holding his microphone, sitting at a table, talking to Jonathan and Joe, who also have a microphone. Stuff like that. He’s got a red shirt. Things that illustrate what’s in the image. And so what are opportunities that we can take to guide our users to produce better content on the front ends?

And I think there’s a particularly large opportunity for that in block themes, because the nature of block themes is very structured. It starts with a theme.json file, and it’s gobbledegook for a lot of people. They don’t understand what the JSON is, how to read it. But it’s structured data that’s extrapolated into the editor to apply the default margin for your blocks. To apply the default labels, the colours, all those different things that are configurable in a block theme.

And so like, what’s missing from that that we can add that will lend to better visual representations of your content? There’s the HTML API behind the scenes that manipulates HTML strings in the context of WordPress. So how can we make sure that we’re generating accessible markup, those building blocks?

A lot of times we run into issues where there’s no good solution for a specific accessibility problem because the foundational elements, were not taking that into consideration when it was built. And so oftentimes it’s hard to get backing for those changes, because it’s such a big undertaking because it wasn’t a part of the the initial discussion and consideration.

And so how can we replace these over time, but also as we build new things, take those things into consideration so that the things that get expanded into the user experience and exposed in the site editor, result in better front end experiences for everyone, that are more accessible?

[00:40:50] Joe Dolson: Yeah, I think that’s a really great thing to call out is those places in the authoring process where we provide accessibility feedback. There’s a whole set of guidelines that are specific to that. That’s the Authoring Tool Accessibility Guidelines. And I love everything we do to try and implement those.

I will say that the colour contrast one, it was implemented very, very early on. There are a number of things that are in Core now that it actually just isn’t able to handle. Some layering things that it’s just like, oh, I don’t know what’s going on here. So that needs work. But that’s just kind of the constant process. At least it does exist and it can cover a lot of the most common use cases.

But, yeah, that alt text one, that’s also a really valuable thing to be able to have some checks on. It’s a hard thing, and I think one precursor change we actually need to be able to make that possible is we need to make some revisions to how alt text is stored in the database.

Because the reality is, right now WordPress stores alt text as a meta field that’s tied to the attachment, tied to the image. But alt text actually is context sensitive. And so really there shouldn’t be one canonical alt text for an image. There could be a canonical description of that image, but the alt text itself should always be context sensitive.

On the other hand, if we just removed that field and didn’t save it, which is something that the block editor has kind of taken that path, when you change it in the block editor, it does not save to the media library, that’s also flawed, because sometimes you do actually want to use that, or at least want to use it as the basis for the next version of that alt text you write. So what I’d like to see is that we could actually save multiple alt text fields and have that managed.

[00:42:33] Jonathan Desrosiers: There’s all these great ideas, and great things, but we also need to strive for simplicity. We don’t want them overwhelmed with a hundred different accessibility notices of how they could improve to the point where they say, I’m going to somewhere else, this website’s too confusing.

This is potentially also another opportunity for AI. Perhaps AI could be used to suggest what accessible alt text should be in the context of the article you’re writing, or the page you’re authoring. You know, maybe AI can be trained in a way to audit your page for accessibility and make suggestions.

AI is really exciting. I often sit back and watch and just observe because there’s so many models and you never know which ones to use. And unless you’re really deeply involved, it’s hard to know the best model for certain tasks.

But I definitely like to think about, it’s helped me be more organised for sure. I have a hard time sometimes when I am creating a talk, getting my thoughts into an organised deck. And so by putting all my thoughts into AI, I’m able to better organise it and then I can drop my notes and my thoughts in the structured outline that it kind of organises for me, right?

But, in what ways can that be applied in the editing process within WordPress under the lens of accessibility? And we could have SEO, we could have, Yoast has a lot of SEO tools that makes SEO recommendations. And we could have our canonical plugin perhaps has an AI interface and we go from there.

So, yeah, there’s many different ways we can tackle these accessibility issues. It’s exciting to have these types of discussions and consider what could be.

[00:44:05] Nathan Wrigley: Sadly, I think time is going to get the better of us. But I would like to say thank you, both of you, for your intelligent commentary on this. I don’t know which way it’ll go.

[00:44:15] Jonathan Desrosiers: And there’s no right way necessarily.

[00:44:16] Nathan Wrigley: That’s right. And it seems like there’s benefits in both possibilities. I’m not going to put you on the spot and ask you which your preferred one is. I have suspicions. Let’s keep this debate going I suppose. Let’s see which way it falls out. And, yeah, Joe and Jonathan, thank you so much for chatting to me today.

[00:44:33] Jonathan Desrosiers: Of course. Perhaps we could do like a six month check-in on the state of canonical plugins.

[00:44:38] Joe Dolson: Yeah, it’ll be interesting to see what happens next. Thanks so much.

[00:44:40] Nathan Wrigley: I honestly think that we could have gone in a hundred different directions here. I think there’s bits of this podcast, which we could have opened up and probably spoken for many, many more hours. But, yeah, thank you both.

On the podcast today we have Joe Dolson and Jonathan Desrosiers.

As you’ll hear in their podcast introductions, both Joe and Jonathan are veterans of WordPress, committing to Core in different ways. They’re deeply committed towards making the platform more useful for all users.

This episode is all about exploration rather than answers. Joe and Jonathan discuss the world of canonical plugins, a special category of plugins maintained by the Core team. They are designed to be as reliable and secure as features found in WordPress Core itself. The discussion unpacks what exactly defines a canonical plugin, how these plugins have evolved out of the traditional feature plugin model, and what it means for users and contributors alike.

At the center of this episode is accessibility: should accessibility enhancements remain a primary concern within WordPress Core, or is it time to start developing them as canonical plugins? Joe and Jonathan discuss the pros and cons of both options, referencing technical challenges, project philosophies, and the ever-changing legislative environment, especially with tough new regulations in Europe.

They consider the discoverability of canonical plugins for non-technical users, potential overlaps and division of labour between plugins and Core, and the moral imperative of making websites accessible to all.

We also touch upon practical examples, from the WordPress video block, to the Performance Lab plugin, and weigh up how cadence, stability, and focus can differ outside the Core. The conversation also goes beyond theory, delving into the real-life impact accessible technology has, from legal requirements to personal stories and the broader mission of democratising publishing.

Whether you’re a developer, a site owner, or someone interested in the ethical questions at the heart of open-source software, this episode is for you.

Useful links

Canonical Plugins (Say What?)

WordPress Importer plugin

mp6 plugin

WordPress HackerOne program

Data Liberation Project

Accessibility: A Developer’s Pledge

JAWS

 MediaElement.js

 Able Player

 Design Experiments plugin

WordCamp Europe 2025  keynote with Noel Tock

Authoring Tool Accessibility Guidelines

June 25, 2025  11:47:18
View counts aren't definitive for video marketing success. Focus on quality viewers, conversion-oriented content, and long-term impact instead of just numbers for achieving meaningful results.
June 24, 2025  16:07:19

Got users stuck with outdated Gravatars or profile info in your mobile app? Your Gravatar integration just became a lot more powerful.

Tens of thousands of apps and sites pull in Gravatars for a better user experience. But when someone wants to update their avatar or profile details, they’re usually stuck hunting for settings — or worse, they can’t update them at all.

With our Quick Editor and Mobile SDKs, problem solved!

One Tap to Update Everything

Our Mobile SDKs have always made avatar updates simple. Users tap their avatar, make changes, and boom – it’s updated everywhere. But avatars are just part of your digital identity.

The latest SDK releases bring full profile editing to your mobile app. Now users can update their entire Gravatar – display name, about info, location, pronouns, and more – right from within your app.

What’s New

Profile Editing Beyond Avatars

Users can now edit their complete Gravatar profile without leaving your app.

This includes:

  • Display name
  • About/bio information
  • Location
  • Job title
  • And more

iOS 3.4.0 Improvements

  • Smoother animations on the SwiftUI sheet
  • Better VoiceOver support for accessibility
  • Performance optimizations throughout

Android 2.5.0 Updates

  • Removed Retrofit dependency from core module (cleaner, lighter integration)
  • New API endpoints for expanded functionality
  • Bug fixes for improved stability

See It in Action

The editing flow feels native to each platform. On iOS, it’s a sleek SwiftUI sheet. On Android, it follows Material Design patterns. Your users get a familiar experience while managing their universal web identity.

Why This Matters

Think about it: someone downloads your app, signs up, and their Gravatar automatically fills in their avatar and profile details. Later, when they get a new headshot or job title, they can update it right there in your app.

No hunting through settings. No switching between apps. One tap, and they’re current everywhere.

You get happier users with fresh, accurate profiles. They get a seamless experience that just works.

We know it works because we dogfood our SDKs in our sister apps Jetpack and Pocket Casts, powering avatars and profile details millions of users monthly.

Developers: Ready to Upgrade?

The updated SDKs are available now for both iOS and Android. Adding profile editing to your existing Gravatar integration takes just a few lines of code.

Check out our developer documentation for platform-specific guides, code examples, and migration instructions.

Your users deserve to control their digital identity. Now you can help them do it.

June 24, 2025  11:41:30
BobWP kicks off Open Channels Dispatch to share quick updates and news about the rebranded Open Channels FM.
June 23, 2025  09:23:00
One of the most inspiring aspects of the WordPress ecosystem is its commitment to making the web accessible in every language. In a recent episode from the series The WordPress Way,” hosts Abha Thakor, Pascal Birchler, and Robert Windisch dove deep into the world of translations and multilingual WordPress and revealed just how much everyday […]
June 21, 2025  02:59:54

We’re celebrating a fun anniversary at Automattic today, our 20th, with a fun look-back. Gosh, it’s been quite a journey, and it still feels like we’re just getting started in so many areas.

In 2005, being a remote-first company was anathema to investors and business leaders* at the time; it was a scarlet letter that combined with our embrace of Open Source and the relative inexperience got us some funny looks and a lot of skepticism. I will be forever grateful to the true contrarians who bet on Automattic in our earliest days.

Even when it was clearly working the first few years, there was always the dismissal of “that won’t scale” that loomed like a remote startup Great Filter. These days I hear from friends who run incubators or do seed investing that almost every company they look at taps into remote talent.

It makes me think about what uncommon things Automattic does today that will be standard in the coming decades. We do our best to balance idealism with pragmatism, because even if you are on the right side of history, being too early can be as bad as being wrong.

I can’t predict everything that will change over the coming decades, especially with AI making the next few years particularly hard to predict. Still, I do know a few things that won’t change: everything flows from our people, open source is still the most powerful idea of our generation, growth is the best feedback loop, and no matter how far away the goal is, the only way to get there is by putting one foot in front of another every day. People will always want fast, bug-free software; instant, omniscient customer service when they need it; and experiences so intuitive that they usually don’t. And once they’ve had a taste of freedom, it’s hard to return to their previous state. (For more, see our creed.)

Our industry is highly cyclical, and I feel fortunate to have gained the perspective of a few bubbles and crashes, along with all the emotions that go with them. It’s undeniable we’re in the very early days — the command-line times — of an AI era, and though it will probably have its own bubble and crash cycles, it feels as significant to me as anything since we started. It’s more important than ever that we fight for open source and the freedom-enhancing side of technology. I’m committed to doing whatever I can to democratize publishing, commerce, and messaging, but there are many other areas of the human experience to cover… pick one to work on! It’s hard and rewarding work.

When I was working on an early version of one of our internal stats systems, it was really important to me that it showed rolling windows of the last 24 hours (daily), 168 hours, 4 weeks, and of course yearly. The rolling was important so you could see the impact of your changes as soon as possible. Then I felt called to add another: decade.

Some thought it was silly at the time, and it’s true that it initially served mainly as a way to display the cumulative number. But I wanted every time someone looked at one of these stats pages that they were reminded that we’re building for the long term. Our users and customers deserve nothing less. And now we have some statistics with 20 years of history, it has some useful comparisons as well!

In Ten Years of Automattic, I wrote:

There’s a lot more to do, and I can’t wait to see what a “20 Years of Automattic” post says. I’m a lucky guy.

Now we know! I’m still a very lucky guy, and can’t wait to build, learn, and share alongside a talented crew of like-minded hackers, dreamers, and doers.

* I’ll note that pioneers like Bob Young (Red Hat), Stephen Wolfram (Wolfram Research), Jason Fried (37Signals), and Mårten Mickos (MySQL) were big inspirations. Also, the entire Open Source community and most projects operated at least partially this way, which is why it seemed so natural to us as a second-generation Open Source company.

June 21, 2025  00:40:00

Hi there,

Are you ready for a summer break of the Gutenberg Times? I am definitely ready for a vacation. It’s been a fabulous first half of the year with plenty of new experiences, and reconnecting with friends in the WordPress community. There is soo much inspiring creativity in the community around block editor, Playground and AI. I am curious what the second half of year will bring.

As for WordCamps, I am considering going to WordCamps, Gyndia, Verona, and Pisa. Once the decisions are made, I, of course, will let you know. Do you have any WordCamp plans?

Enjoy the summer and I’ll be back.

Yours, 💕
Birgit


In their post, Share your Pride Photo Drive is back for 2025, Anne McCarthy invites you to an open photo submission event to boost LGBTQ+ representation in the WordPress Photo Directory. The initiative encourages everyone (not just the LGBTQ+ community) to contribute, with fun incentives and cash prizes, emphasizing the importance of diverse, high-quality imagery for web creators. The deadline is July 1st 2025.

Developing Gutenberg and WordPress

Jean-Baptiste Audras just dropped the schedule for WordPress 6.8.2 Release Schedule. There are a few bug scrub sessions coming up, with the first release candidate (RC1) out on July 8, 2025, and the final version landing a week later on July 15. He also shared some handy links to the list of fixes they’re hoping to squeeze into this update.

🎙 The latest episode Gutenberg Changelog 118 – WordCamp Europe, WordPress New AI Team, the Pride Photo Drive, Gutenberg 20.9 and 21.0 Anne McCarthy is back from sabbatical and we talked about WordCamp Europe, the new WordPress AI team, the Pride Photo Drive, and Gutenberg 20.9 and 21.0 .

If you are listing via Spotify, please leave a comment. If you listen via other podcast apps, please leave a review. It’ll help with the distribution.

Plugins, Themes, and Tools for #nocode site builders and owners

In his post Introducing the View Transitions Plugin for WordPress, Felix Arntz
announced a new plugin that brings smooth, animated transitions between pages to WordPress sites. He explains that the plugin uses the View Transitions API to create seamless visual effects, making navigation feel more modern and app-like without the complexity of single-page applications. Arntz described how the plugin works out of the box, offers customization through both the WordPress admin and theme code, and supports various animation styles. The goal is to improve user experience and perceived performance with minimal setup.


In his latest video, The Secret to Client-Proof WordPress Sites, Wes Theron shows how to let clients safely update content while keeping a consistent design. He demonstrates using synced patterns with editable overrides. Global design changes to a pattern update all instances on the site. He explains how clients can modify specific elements without disrupting the layout. This method simplifies site management and maintains design integrity, making WordPress sites easier to manage and grow.



Claire Brotherton reviewed the Twenty Twenty-Five WordPress theme, highlighting its flexibility and modern design. Brotherton details its customizable templates, diverse style variations, and extensive block patterns, making it easy to create unique layouts. She notes the theme’s accessibility features, international typography options, and compatibility with the latest WordPress tools. The guide also covers practical tips for editing menus, headers, and footers, and encourages users to experiment with the theme’s many design possibilities. The post Twenty Twenty-Five Theme: the Ultimate Guide definitely lives up to its promise.


Johanne Courtright introduced the Groundworx Navigation plugin, a flexible, block-based navigation tool for WordPress. After years of building custom menus, she created this plugin to streamline features like accordions, slide-ins, sticky headers, and responsive toggles. Designed for Full Site Editing, it fits modern WordPress workflows and eliminates the need to rebuild navigation logic for each project, making advanced menu patterns easier for both developers and site owners. Check it out from GitHub. Once it goes through the approval process, it will also be available for download from the WordPress repository.


In his post What’s the plan for PublishPress Blocks? Steve Burge mentions the new Block Usage Screen. It shows you any usage of blocks on your site or search for blocks. For example, it will show how many paragraph blocks you used throughout all blog posts. He also shows the new menu from within the plugin and lists six more features: control on who can use each block, additional blocks like accordion, galleries, tabs etc. I am excited about the feature to create my own Block Styles right from the interface without code. In the video on YouTube, Burge shows off how to find your WordPress Blocks with the PublishPress Blocks Plugin.

Theme Development for Full Site Editing and Blocks

A common solution to make a sticky header is to wrap the template part in a group block and set the Position to “sticky”. Mike McAlister has more elegant solutions to Fixing the sticky header bug in the WordPress site editor.

Hans-Gerd Gerhards has also tackled this problem with his plugin Dynamic Header & Navigation for Block Themes, that also, among a few other things, it gives you settings to shrink the header on scroll, so it doesn’t take up too much real-estate.



In her post, Layout and Design with the Grid Block, Anne Katzeff explains how the grid block can help make web pages look cleaner and more organized. She gives simple advice for setting up columns, spacing, and alignment, and encourages people to play around with different layouts to find what looks and works best. It might just be the manual you have been looking for.


“Keeping up with Gutenberg – Index 2025”
A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: 2020 | 2021 | 2022 | 2023 | 2024

Building Blocks and Tools for the Block editor

In this high-level post, 15 WordPress Interactivity API examples – WP Gallery
Diane Collet, co-founder of Twentig and WP Gallery, explains how the new WordPress Interactivity API empowers developers to create dynamic, interactive front-end experiences without relying on heavy JavaScript frameworks. She highlights how the API enables seamless, reactive user interfaces directly within WordPress blocks, making it easier to build features like live search, filters, and instant feedback. Collet emphasizes the API’s simplicity, performance benefits, and its alignment with WordPress’s vision for a more interactive and modern web, encouraging developers to explore its capabilities for enhancing user engagement.

To get started with the Interactivity API, you can work through this list of resources:


JuanMa Garrido was inspired by Igor Benić’s list of WordPress challenges. In his live stream he ventured to solve some of them. The recording is on YouTube. The first challenge was: Create a block that fetches and displays posts from a specific category dynamically (using ServerSideRender component).

In his live stream, WCEU workshop code along, Ryan Welcher followed Bero’s WCEU workshop on setting up automatic testing with Playwright and Playground.



This week, Jonathan Bossenger updates us about WordPress MCP & Feature API on his live stream.


Need a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.

Now also available via WordPress Playground. There is no need for a test site locally or on a server. Have you been using it? Email me with your experience

GitHub all releases

Questions? Suggestions? Ideas?
Don’t hesitate to send them via email or
send me a message on WordPress Slack or Twitter @bph.


For questions to be answered on the Gutenberg Changelog,
send them to [email protected]


Featured Image: Photo by Polesie Toys on Pexel


Don’t want to miss the next Weekend Edition?

We hate spam, too, and won’t give your email address to anyone
except Mailchimp to send out our Weekend Edition

Thanks for subscribing.

June 20, 2025  17:38:25

Here’s the deal: Every time you pop up online with a different headshot, a tweaked job title, or a bio that sounds like it was written by three different people on three different days, you’re not just being quirky. You’re quietly chipping away at your credibility.

Those little inconsistencies create one big problem: Cognitive friction. And cognitive friction = second-guessing. Not ideal when you’re trying to win hearts, minds, or contracts.

Unlike the good old days of handshakes and conference rooms, building trust online isn’t natural or automatic. It’s something you have to design carefully, deliberately, across every touchpoint where your name shows up.

And if you’re new to the game without a reputation to fall back on? The stakes are even higher.

But here’s the good news: Trust is buildable – and way more under your control than you think.

In this guide, you’ll learn how to:

  • centralize your online identity so you look polished and cohesive everywhere.
  • use social proof like a pro to boost instant credibility.
  • communicate authentically without feeling like you’re “branding” yourself to death.

By the time we’re done, you’ll know exactly how to build a digital presence that feels genuine, trustworthy, and ready to convert curious visitors into loyal fans, wherever they find you.

Why professional credibility isn’t just “nice to have” anymore

Thinking professional credibility online is just about having a typo-free website and a decent logo is like saying a handshake is only about touching another person’s hand. Important, yes – but nowhere near the full story.

Today, trust online demands way more than surface polish. It’s about creating a coherent, recognizable presence that follows you everywhere your audience might stumble across you.

A January 2024 study from the Digital Identity Institute nailed it down to four essentials:

  • Your identifiers (name, handle, URL).
  • Your content (what you post and share).
  • Your profile photos (how you visually show up).
  • Your personal images (those behind-the-scenes moments that humanize you).

Get these aligned? You’re golden. Mix them up? You undermine the very trust and credibility you’re aiming for.

Every time someone jumps from your Twitter to your LinkedIn to your personal blog and spots a disconnect, a little voice whispers: “Wait, is this even the same person?”

Cue doubt. Cue hesitation. Cue lost opportunity.

And just a heads-up: Your digital reputation isn’t just about what you put out there. It’s also:

  • What people say about you on review sites.
  • How (and whether) you respond to comments.
  • Where your name pops up in industry chatter.
  • Those forgotten forum posts from 2018 (yes, even the cringey ones).

For newcomers, this can feel wildly overwhelming. But don’t panic – there’s a system for building trust that works whether you’re a total newbie or a seasoned pro.

And it all starts with something deceptively simple: Making it crystal clear that it’s actually you, wherever you show up.

Let’s dig into how to make that happen.

Establishing your verified identity online

Let’s talk about the sneaky tax no one warns you about: Digital fragmentation.

Every time you spin up a new GitHub profile, tweak your WordPress.com bio, or casually update your Slack status, you’re basically creating another branch of your professional identity.

Each one demands attention; otherwise, it leaves behind tiny cracks in your credibility that clients will notice (even if they don’t realize it).

Trust is built silently through strategic verification signals. Things like:

  • Verified email domains: [email protected] trumps [email protected] (every time).
  • Consistent usernames: When “jane-smith-designer” shows up everywhere, recognition is effortless.
  • Linked professional accounts: Connecting your LinkedIn, Twitter, and portfolio into a neat trust web.
  • Visual continuity: That profile photo is important, it’s a visual anchor that screams “yep, this is me”.

But the brutal truth is that keeping it all polished and synced can feel like a part-time job. And the longer you’re online, the more ancient breadcrumbs (and outdated bios) you scatter across the internet like digital confetti.

Enter Gravatar.

Instead of another profile to manage, Gravatar is the solution to profile management by connecting your professional identity to something you already use everywhere: Your email address.

Gravatar becomes your single source of truth, rippling updated credibility across the web with zero extra work.

How Gravatar keeps your digital identity (and sanity) intact

Gravatar’s magic trick is simple but game-changing: Update once. Sync everywhere

Here’s how it works:

Gravatar profile example
  1. You sign up once using your email address.
  2. Gravatar then pushes your profile info – your headshot, your bio, your portfolio links – across any platform that has Gravatar integrated.
  3. Instantly recognizable. No manual updates. No weird gaps.

Gravatar plugs into heavy-hitters like:

It’s like a digital business card, but one that updates itself, multiplies itself, and hands itself out for you.

When you update your Gravatar, you’re refreshing your professional image across a whole ecosystem without lifting another finger.

And even on platforms that don’t plug directly into Gravatar (looking at you, X and Instagram), your Gravatar profile still works as a rock-solid bio link destination. A central hub that confirms, “Yes, I’m legit.”

Let’s get into how to set it up.

How to showcase expertise that actually converts (not just impresses)

Having a verified, consistent digital identity is a great first step. But if you want to turn casual visitors into paying clients, you need more than legitimacy. You need to flex your expertise in ways that actually move people to act.

Here’s the difference between professionals who quietly exist online and those who consistently rack up conversions: They don’t just say they’re good. They prove it – strategically.

Here’s how to build serious trust and trigger buying decisions at the same time:

Content that builds (and measures) trust

Not all content earns trust equally. Here are the formats that drive the biggest trust-to-conversion ROI:

  • Case studies with real results: Proving you’ve solved this exact problem before removes the risk for new clients.
  • Original research with downloadable assets: Publishing fresh findings no one else has? Authority unlocked (not to mention backlinks).
  • Video demonstrations: Watching you in action builds confidence fast.
  • Step-by-step tutorials: Breaking down complex processes shows mastery and your ability to guide others.

Credentials that appear exactly where they matter

Having credentials is great, but placing them where they crush doubt is the difference.

  • Certification logos near pricing tables instantly calm “Is this worth it?” nerves.
  • Industry awards on service pages make your premium offer feel like a no-brainer.
  • Testimonials right beside CTA buttons? Ideal for that final, reassuring nudge.

Thought leadership that stands out (not blends in)

Vanilla expertise doesn’t convert. You need a clear, memorable POV that plants your flag.

  • Challenge industry norms (backed by real evidence, not just hot takes).
  • Create your own frameworks that only you offer.
  • Take thoughtful stands on key industry debates (without turning your audience into enemies).

Trusted platforms that amplify your expertise

Sometimes it’s not just what you say – it’s where you say it. That’s why Gravatar’s integrations create trust-by-proxy opportunities you can’t buy:

  • WordPress comments: Your verified Gravatar shows up and instantly builds recognition.
  • GitHub contributions: Your Gravatar profile signals serious technical chops.
  • Slack communities: Your Gravatar credentials put you right inside trusted expert circles.

Stack these strategies, and not only are you building a reputation, you’re removing every obstacle between curiosity and conversion. When prospects can instantly answer both “Can they help me?” and “Can I trust them?”, signing on becomes the obvious next step.

Let’s move on to putting all of this into action.

Building trust through authentic communication

A fascinating 2020 University of Missouri study found that sharing the story behind why you do what you do skyrockets your perceived authenticity.

Turns out, people don’t just trust the expert with the most credentials. They trust the expert who lets them in on why it matters to them personally.

In other words, explaining why you care can be just as powerful as proving you’re qualified.

This research shatters the old-school myth that professional communication should stay cold, detached, and full of corporate buzzwords. Storytelling – real, personal, first-person storytelling – builds deeper trust than any third-person “Our team is passionate about solutions” fluff ever could.

Here’s what that looks like in action:

  • “I built this workflow after nearly burning out during my first agency job.” is more effective than “Our optimized workflow increases efficiency by 27%.”
  • “The software crashed on me three times before I figured out this workaround.” will win people over above “Our team has extensive troubleshooting experience.”

See the difference? One makes you nod and feel something. The other makes you… skim.

How Gravatar supercharges your authenticity

Gravatar is your secret weapon for broadcasting authenticity everywhere you show up.

Inside your Gravatar profile, you’ve got space to tell the story:

  • The hurdles you’ve faced.
  • The experiences that shaped your expertise.
  • The real reasons behind what you do.

And the beauty of this is you only have to do it once. Gravatar pushes that authentic narrative across every platform where your profile appears – so you’re building trust automatically without tailoring a new story for every single site.

When you combine that authenticity signal with your hard-earned credentials, you create a full, irresistible trust picture: Qualified. Relatable. Human.

Exactly what today’s clients are looking for.

Create your Gravatar profile today and start boosting your professional credibility

If there’s one thing this guide has made crystal clear, it’s that consistency = credibility.

When potential clients see the same professional presence across every platform, their trust barriers don’t just lower; they practically melt away.

And that trust is what turns casual browsers into paying customers.

Gravatar solves the messy fragmentation that trips up even the savviest digital pros. Instead of chasing down a dozen outdated bios and rogue headshots, Gravatar syncs your professional image, links, and story across hundreds of platforms automatically.

One update. Endless consistency. Zero stress.

And it’s not just a time-saver. It’s a trust amplifier that strengthens everything you’ve worked to build. As we’ve seen, Gravatar:

  • Anchors your visual identity wherever you show up
  • Connects people directly to your best case studies, thought leadership, and portfolio
  • Tells your authentic professional story, not just your title
  • Reinforces every layer of social proof you’ve earned

And the best part? Setting up your Gravatar profile takes five minutes, so create your free Gravatar profile today and start turning trust into conversions.

June 20, 2025  09:56:48
In this episode of "Woo Product Chat," co-hosts James and Katie chat with Miriam Schwab from Elementor about transparency in software, community engagement, and the balance of openness while navigating business strategies.
June 20, 2025  08:28:00
A journey shows that success isn't a straight path. Embrace resilience, self-reflection, and the courage to reinvent yourself in a changing tech world.
June 19, 2025  15:26:06

As of July 2025, the WordPress Security Team will no longer provide security updates for WordPress versions 4.1 through 4.6.

These versions were first released nine or more years ago and over 99% of WordPress installations run a more recent version. The chances this will affect your site, or sites, is very small.

If you are unsure if you are running an up-to-date version of WordPress, please log in to your site’s dashboard. Out of date versions will display a notice that looks like this:

Dashboard notice: "WordPress 6.8.1 is available! Please update now."

The version you are running is displayed in the bottom of the “At a Glance” section of the dashboard.

At a glance widget showing a site running WordPress 4.1.41

As a reminder, the only actively supported version of WordPress is the most recent one. Security updates are only backported to older branches as a courtesy.

The Make WordPress Security blog has further details about the process to end support.

June 19, 2025  13:48:55

I recently undertook a significant project: migrating the entire JavaScript codebase of my AI Services plugin for WordPress (GitHub repository) to TypeScript.

Why is that significant?

  • We’re talking about over 80 JavaScript files, so it’s by no means a small project. Not gigantic like e.g. Gutenberg, but certainly a substantial amount of code.
  • Additionally, that JavaScript code is powering a plugin with a fairly unique feature set. This uniqueness often makes it harder for Large Language Models (LLMs) to assist, as there’s likely less similar code in their training data.

The process taught me a lot about the synergy between a well-structured codebase and LLMs. It also strengthened my belief that, while an LLM isn’t magically going to solve complex development tasks for you, it can be a massive productivity booster when you prepare your project and guide it effectively.

This post will walk you through how I used Cline in VS Code together with Google’s Gemini models to get it done efficiently and why I think this migration was worthwhile.

Why Bother with TypeScript? (Hint: LLMs Love Structure)

If you’re a developer who hasn’t yet embraced TypeScript, I get the hesitation. You might be annoyed by the seemingly verbose syntax, or perhaps you’ve heard that it slows down development. Let’s address those points.

The idea that TypeScript slows you down couldn’t be further from the truth in the long run. Using TypeScript allows you to ship safer code by preventing many potential bugs during development that plain JavaScript would miss. This makes complex projects easier to understand and ultimately faster to iterate on. The only scenario where TypeScript might genuinely get in the way is with quick prototypes, especially when dealing with dependencies that aren’t typed. I’d argue this is the only case where sticking with plain JavaScript is more reasonable today.

And if you’re turned away by the syntax? Don’t worry, I definitely was in the same boat myself. But after writing about five TypeScript files, I found it started to feel very natural.

Beyond the general benefits, there’s a modern, compelling reason to adopt it: TypeScript provides structure, and LLMs thrive on structure. By providing the clear, explicit types of TypeScript, you give the LLM a much more detailed and unambiguous map of your codebase. This helps it understand context and your intent, leading to far more accurate and helpful suggestions.

A few weeks ago, I posted on social media: “Learn TypeScript deeply.” And I truly think you should.

My Migration Strategy: A Human-in-the-Loop Approach

My goal wasn’t to have an LLM do all the work, but to have it act as a super-powered assistant. I used Cline in VS Code, primarily with the Gemini 2.5 Pro model via the Gemini API. I’m a fan of Cline because of its customizability and its “Plan” vs. “Act” modes, through which you can force the model to collaborate with you on defining the approach before writing any code.

Here’s the step-by-step process I followed.

Step 1: Laying the Groundwork

Before letting the LLM loose, some manual preparation is essential.

  1. Start with the Most Foundational Package: My plugin consists of several JavaScript packages. I began with the package that had no dependencies on the others. It’s crucial to migrate packages in order of their dependency graph.
  2. Define Core Types Manually: This is the most critical manual step. I went through the foundational package and defined the core TypeScript types myself, e.g., in a types.ts file at the root of the package. While an LLM can sometimes help, doing this manually ensures accuracy and aligns the data structures perfectly with my intent.
  3. Migrate a Few Files Yourself: I manually migrated 3-5 files to TypeScript. This served two purposes. First, it created “perfect” examples of my desired coding patterns—including code style, JSDoc comments, and variable naming. Second, it helped me get reacquainted with TypeScript within the specific context of this project.

Step 2: Defining the Workflow (and Relevant Rules)

To ensure consistency, I leveraged two key features: custom rules and reusable workflows.

First, I established custom rules that define the TypeScript coding standards for the project. This helps the LLM generate code that is consistent with my best practices. This concept is supported by many AI code assistants, including Cline. As an example, you can see the coding standards I defined for the AI Services plugin here.

Next, I created a reusable prompt, which Cline calls a “workflow.” This saves me from re-typing a complex prompt for every single file. Here is the workflow I created, saved as migrate-typescript.md:

You need to migrate specific JavaScript files to be valid TypeScript.

Concretely, you need to migrate the JavaScript code in <file> to TypeScript. There are three possible scenarios:

- If the file is already using the extension `.ts` or `.tsx`, it may have already been renamed from `.js`. You MUST make the changes to migrate the code to TypeScript directly within the file.
- Otherwise, if the file is using the extension `.js` and it contains React components (JSX), you must create a new file of the same name but with the `.tsx` extension and write the code migrated to TypeScript in there.
- Otherwise, if the file is using the extension `.js` and it does not contain any JSX, you must create a new file of the same name but with the `.ts` extension and write the code migrated to TypeScript in there.

First, use the `read_file` tool to collect sufficient relevant context. Some of the files the user may have already provided to you. In that case, DO NOT READ THEM AGAIN.

- Search for `tsconfig.json`, `.eslintrc.json`, and `.eslintrc.js` files in the project root directory. Read all of them that you find, to know which TypeScript and TSDoc configuration requirements the migrated TypeScript code must follow.
- Search the current directory and any parent directories _within_ the project for `types.ts` files. You MUST read all of these files to understand the project-specific types.
- Look for other TypeScript files in the same directory or a sibling directory. Read 1-3 files to learn about the project-specific TypeScript conventions and best practices, e.g. regarding specific type imports, code style, documentation, or file structure.
    - If you are writing a `.ts` file, you must ONLY consider existing `.ts` files for this contextual research.
    - If you are writing a `.tsx` file, you must ONLY consider existing `.tsx` files for this contextual research.

With that context in mind, you MUST follow the following steps in order to migrate the <file> to TypeScript:

1. Migrate the JavaScript code from <file> to TypeScript, following the patterns learned from ALL previous context.
    - NEVER change any names, e.g. of variables or functions.
    - NEVER change any logic.
    - In addition to the TypeScript code itself, you MUST also ensure to update any JavaScript doc blocks to follow TSDoc syntax, according to project configuration.
    - If any usage of the obsolete `PropTypes` (`prop-types`) is present, you MUST remove it. Using TypeScript itself is a sufficient replacement.
2. Read the `package.json` file in the root directory to check which `"scripts"` are available. Identify any relevant lint, build, and format scripts, which you can use to verify whether the TypeScript code you wrote is accurate.
    - To find the relevant lint script, look for names like "lint-js", "lint-ts", or "lint" for example.
    - To find the relevant build script, look for names like "build:dev", or "build" for example.
    - To find the relevant format script, look for names like "format-js", "format-ts", or "format" for example.
    - Remember the exact names of these scripts that you found.
3. If you found a relevant build script, RUN IT in the command line via NPM and check the output. Here is an example how to run it:
    - If the script name is "build", execute `npm run build` in the command line.
4. If the build script you ran reported TypeScript errors, inspect them carefully. Then review the TypeScript you wrote to see how you can fix the errors. Update the previously generated TypeScript code to fix the reported errors.
5. If you found a relevant lint script, RUN IT in the command line via NPM and check the output. Here is an example how to run it:
    - If the script name is "lint-js", execute `npm run lint-js` in the command line.
6. If the lint script you ran reported errors, inspect them carefully.
    - For any Prettier errors, DO NOT try to fix them manually. Instead, run the format script you previously found if one exists.
    - For any errors other than Prettier, review the TypeScript you wrote to see how you can fix the errors. Update the previously generated TypeScript code to fix the reported errors.
7. If you found a relevant build script before, RUN IT again and check the output. Afterwards, YOU MUST STOP.
    - If the scripts no longer report TypeScript errors, all is well.
    - If the scripts still report TypeScript errors, please share the feedback with the user, to let them decide on the next steps.

Note: You may wonder about common prompting best practices like “You are a senior web engineer” etc. being missing from this workflow. This is because Cline already has its own built-in system instruction, so adding something like that here would likely be unnecessary or even confusing. Keep in mind that this workflow runs in combination with any built-in system instructions from your tooling as well as any custom rules you defined.

Step 3: Executing the Migration, File by File

With the groundwork laid, I began the migration. I preferred to first manually rename a file from .js to .ts or .tsx. Then, I’d invoke my workflow in Cline like this:

/migrate-typescript.md @src/ai/classes/browser-generative-ai-model.ts

By renaming the file first, Cline provides a convenient diff view against the original JavaScript code, making it much easier to spot changes. If I let the workflow create the new file, it would be treated as a brand-new file with no history to compare against.

I started with the most capable model, Gemini 2.5 Pro. After confirming its quality, I experimented with the faster and cheaper Gemini 2.5 Flash. However, the results were notably worse, so I switched back to Pro. This highlights a key lesson: always start with the most powerful model available, and only downgrade if you can confirm it meets your quality bar for the specific task.

While I’m using Cline, this approach should be adaptable to other tools like Cursor with only minor adjustments. As long as you can define custom rules and use reusable prompts (even if it’s just by copy-pasting), you can achieve similar results.

The Results: Time, Cost, and Effort

So, was it worth it? Absolutely.

My experience was that for some simpler files, Gemini got the migration 100% correct on the first try. For more complex files, I typically needed to spend 5-10 minutes on review and corrections. However, migrating those same files manually would have likely taken around 25-30 minutes each.

Let’s talk numbers:

  • Total Cost: The entire migration of over 80 files cost me about $20 in Gemini API credits.
  • Time Spent: I spent approximately 3 hours on the migration, including setup, execution, and review.
  • Estimated Time Saved: I estimate that doing this manually would have taken at least 8 hours.

Spending $20 to save 5 hours of focused development work is a trade I will happily make any day. And beyond that, now I have a reusable workflow that I can use to do the same for my other existing projects in the future.

Last but not least, LLMs will only get better with time. If you notice that the results you get for your use-case are rather poor even though you’ve set up the project and prompts in an ideal way, don’t give up for good. It can certainly be frustrating, but there’s a good chance that in a few months, or even a few weeks, the latest LLM will do better. And always keep in mind that the LLM is there to help you, not to replace you.

Questions & Feedback

This project was a powerful demonstration of how to partner with an LLM effectively. It underscores that the role of the developer is shifting—we are not just writers of code, but also architects of systems and directors of our LLM assistants.

That said, I’m always learning.

  • I am by no means a TypeScript expert. If you are, you may find code patterns in the AI Services codebase that you consider suboptimal. Please let me know in the repository!
  • Obviously, when it comes to using LLMs for code assistance, the field is changing daily. If you’ve found success with other approaches or if your efforts have mostly led to disappointment, I’d love to hear from you and learn from your experiences in the comments below.

The post Migrating Your JavaScript Codebase to TypeScript with Cline & Gemini appeared first on felix-arntz.me.

June 18, 2025  16:55:25

I’ve been testing the developer previews of all the new Apple 26 operating systems, which I don’t recommend this early in the cycle, but I like to live dangerously. I’ve quickly become accustomed to Liquid Glass. The iPad windowing enhancements do make it feel more like a real computer, but I usually run things in full-screen mode. My favorite thing to play with so far has been the new Spotlight (what pops up when you press Command + Space) and related shortcuts.

I loved Alfred, I tried Raycast, but a general life goal this year is to simplify wherever I can, so I’ve been exploring the enhancements in the new Spotlight.

What I’ve found the most useful in the past is Alfred’s Open URL Action, which basically lets you type something like “gm united reservation” and it translates that into opening a Gmail search in your browser, with “united reservation” put in the URL in the right place to run a search.

The Shortcuts app in MacOS and iOS is amazing, which I’ve always known, but I haven’t played with it much. This was my chance! After a bit of tinkering, I got it to pop up an input form and then run the search. I Googled a lot to see if it could take input from the Spotlight search bar and every place said no, I’m not sure if this is new in MacOS 26 or not but I found the button that makes it work. It’s not as smooth as Alfred, but it’s pretty decent. I’m going to share a screenshot that shows my Gmail search shortcut that takes input from Spotlight — the key breakthrough was clicking the (i) menu on the right and finding the checkbox for “Receive Input from Search.”

I gave it a “gm” hotkey, pressed enter, and you get this in Spotlight.

Tada! Not as nice as Alfred but it gets the job done. My other shortcuts that people might find useful are LI for LinkedIn search, PY is Perplexity, YT for searching the history of YouTube videos I’ve watched, and AM for searching my Amazon order history. (Because I’m usually trying to find a link for something I’m recommending, or re-order an item.) Here are the search URLs for everything I’ve mentioned:

If you dug this, did you know WordPress also has a cool popup shortcut feature? In 2023, we introduced the Command Palette in the Gutenberg block editor and site editor. To access it on Mac, you press Command + k. I’d like to bring it to every admin page so it can function more like Spotlight or Raycast for WordPress.

June 18, 2025  14:00:00
Transcript

[00:00:19] Nathan Wrigley: Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.

Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how Human Made have built WordPress at the scale of a global bank.

If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.

If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.

So on the podcast today, we have Tom Willmot and Jon Ang.

Tom is the co-founder of Human Made, an enterprise WordPress agency that’s been pushing the boundaries of what WordPress can do since its inception. Jon is also with Human Made, and together they bring a huge amount of experience working with major clients on large scale projects.

At this year’s WordCamp Europe in Basel, they presented a case study, their long-term, continually evolving work, with the global banking giant Standard Chartered. Most listeners might not be working at the scale of 85,000 employees, 70 countries, and hundreds of millions of page views a month, but Tom and Jon are here to share insights from the top end of WordPress implementation.

They explain how Human Made helped Standard Chartered shift from a proprietary CMS lock-in, to a flexible, open source Gutenberg powered WordPress solution that serves as the main web platform for the bank across all its markets.

We talk about the unique compliance and security challenges of working in the banking sector. What it takes to persuade giant enterprises that WordPress is not a toy, and how to support hundreds of CMS users with custom workflows and integrations.

Tom and Jon discussed the specifics of scaling WordPress for the enterprise, from accessibility and multilingual setups, to custom block development, and real time collaborative editing. We also hear how Human Made works with clients to contribute innovations and security improvements back to the WordPress community, ensuring that lessons learned at the enterprise level benefit everyone.

If you’re curious about how WordPress powers mission critical web infrastructure for some of the world’s biggest organizations, or how you might pitch WordPress for enterprise use, this episode is for you.

If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.

And so without further delay, I bring you Tom Willmot and Jon Ang.

I am joined on the podcast today by two fabulous guests. I have Tom Willmot and Jon Ang. Hello both.

[00:03:32] Tom Willmot: It’s great to be here.

[00:03:33] Jon Ang: Hello.

[00:03:34] Nathan Wrigley: This is my first interview at WordCamp Europe in, I want to say Basel, but I still don’t know how to pronounce it. Let’s go with that.

[00:03:41] Tom Willmot: I mean, I think it’s Basel.

[00:03:42] Nathan Wrigley: Yeah, okay, we’ll go with that. And we’re here today talking to Tom and Jon all about an interesting project, which I want to say they’ve just completed, but I’m not sure that’s the right word.

They’re doing a presentation at WordCamp Europe and it’s all about a project for a bank, and a very large bank I might add. Standard Chartered, you may have heard of it, you may not. But that’s the presentation. I’m guessing you haven’t done it because we’re still in Contrib day, but are you all prepared and ready?

[00:04:06] Tom Willmot: I think we’re pretty prepared. When did you submit the slides, Jon?

[00:04:09] Jon Ang: Just submitted it 10 minutes ago, so I think we’re good. But it’s been revised multiple times, yeah. I’m fairly certain that it’s going to be quite interesting.

[00:04:16] Tom Willmot: I mean, one of the challenges actually of doing a presentation about a bank is you have to double check that you’re allowed to say everything that we’re going to say.

[00:04:23] Nathan Wrigley: So we’re going to be editing this heavily.

[00:04:25] Tom Willmot: Yeah, potentially.

[00:04:26] Nathan Wrigley: So Standard Chartered is a very large bank. WordPress is obviously a CMS, which allows us to create websites for these banks. But let’s talk about the whole story. These are not new clients of yours, or they are new clients of yours. How long have you been working with them?

[00:04:39] Tom Willmot: No, I mean, this has been a relationship that we’ve had since 2016. So, yeah, this is a long term client. These projects are not really like the project starts and the project finishes. We got involved working with them, yeah, back then there was an early prototype that turns into more stuff, that turns into more stuff. And we’ve been building and iterating and evolving the platform for nearly 10 years.

[00:04:59] Nathan Wrigley: Prior to us hitting record, I will have recorded a preamble saying who both of you are. But just in case you’ve dipped into the podcast right now, you’re both with Human Made. My understanding, Tom, is that this was something that you are the founder of.

[00:05:12] Tom Willmot: Yeah, I’m the co-founder. Me and my, actually my brother Joe, which a lot of people don’t know, co-founded the company together, and then Noel joined a year, in so that we are the three founders.

[00:05:21] Nathan Wrigley: And I guess it’s fair to categorise you as, maybe this is something that you don’t like the sound of, I don’t know, an enterprise WordPress agency.

[00:05:27] Tom Willmot: Yeah, for sure. We’ve been focused on like WordPress at the high end, since the beginning. We were always interested in like, what’s the biggest stuff that WordPress is possibly being used for and how can we get involved in that?

[00:05:38] Nathan Wrigley: And I guess you must have some kudos, credentials, now which enable you to open doors like the Standard Chartered door, in a way that nathanwrigley.com, that’s probably not going to happen.

[00:05:48] Tom Willmot: I mean, we’ve got a history now of doing that kind of work and so that helps.

[00:05:52] Nathan Wrigley: So tell us about this client then. Just paint the backstory. Who are they? What do they do? I guess what we’re trying to do is build a picture of just how massive a project this is. Because working for a bank, I imagine there’s lots of t’s to cross and i’s to dot.

[00:06:06] Jon Ang: Yeah, they’re a global bank inside about 70 countries, hovering around to 150 markets. I think about 85,000 employees worldwide. So out of those, there’s maybe, and it’s a bit of a intro into what we see in our slides, but 500 employees that’s using the backend on a day-to-day to publish.

So think of them working with the monetary authorities of each country that is governing how a website should function for a bank that has all of this running with the staff, figuring that out, and us providing the platform for them to stay compliant, and continue to be a agile in a way of what they’re publishing every day.

I think that’s a bit of what Standard Chartered is like. They are, I think, a bank that started in 1800’s, and has a pretty massive presence in Asia Pacific, particularly I think Singapore and Hong Kong. Started from the UK a long time ago.

[00:06:59] Nathan Wrigley: Yeah, it’s got a lot of heritage, hasn’t it? There are banks which are popping up all over the place at the moment, but there are still a few holding on that have been there for literally centuries. And this is a name which is very familiar to me. And whenever I’ve traveled throughout the world, there’s always some presence there. They’re big, essentially. This is not a child’s play website. You can’t throw this together in a matter of weeks. This is a big deal.

[00:07:19] Tom Willmot: And I mean, you know, they’re a big company and it’s a big name, there’s a lot of employees. I think also what’s interesting is that their use of WordPress is also big. So they’re not just using WordPress for a campaign mini site or their corporate comms department. This is like the primary web platform for Standard Chartered across all those countries, including sc.com, Wealth Banking. I think something like 95 plus percent of all web traffic goes through WordPress.

[00:07:44] Nathan Wrigley: Just to paint a picture of that, so it’s a website though, we’re not dealing with the sort of transaction data. You know, if you’re a customer of Standard Chartered, WordPress is not handling the money going from one account to another. This is the sort of front end, public facing website, I’m guessing.

[00:07:57] Tom Willmot: Yeah, we’ve not got like a dollars custom post type.

[00:08:00] Nathan Wrigley: So paint a picture of just how big they are. So they’ve been going for a couple of centuries. You mentioned that, I think 2015, you built this relationship. You’ve been working with them in an agile way since then.

Do you have any metrics in terms of, I don’t know, the amount of traffic that the website is currently having? The number of locales? I think you touched on that a little while ago. Number of users? And then I’ve got this fourth one that I’ll come to in a minute. So let’s hit traffic first. Do you have any idea of the amount of petabytes or terabytes of data that are flying around just for this website?

[00:08:28] Jon Ang: I don’t have the petabytes, we’re talking about like hundreds of millions of page views per month. Like, that’s the kind of traffic that they’re getting. Your previous question around, so like it’s not quite hitting the dollars amounts, like, how much do I have in my savings account? But there is a lot of work passing, let’s say account signup information from the front end to the back end stuff that we do on that front as well. So it does work on some fairly critical pieces too on the banking website, it’s not just the marketing setup.

[00:08:56] Tom Willmot: Yeah, like for example, when you use the internet banking mobile apps, all of the customer messaging there comes from the WordPress CMS.

[00:09:04] Nathan Wrigley: Wow, okay. So lots and lots of data flying around. Some fairly critical components where you have to be absolutely a hundred percent sure that you’ve got the bulletproof security. In terms of the number of users, what was that? Did you say 500?

[00:09:17] Tom Willmot: Around 500 in the CMS, at any one time. I mean, that’s kind of interesting. There’s like a central global team that manage like brand governance and all of that. And then each country has their own country level marketing team across like 150 markets or something.

[00:09:32] Nathan Wrigley: And when you say the 150 markets, does that translate into 150 different languages as well? I’m guessing languages, there’s a fairly large component there.

[00:09:40] Jon Ang: I think there’s about 30 separate languages in there. So around that, 150 markets is split into what we call retail banking and non retail. So retail banking are regular things that you and I would do. We go into the bank, we get a credit card set up, we withdraw cash. And then non retail will be like investors, people who are interested in big money. So those are the like individual markets they work in. And across that, 150 markets, 70 countries, 500 plus users, doing this on a day-to-day basis.

[00:10:09] Nathan Wrigley: These are all genuinely eye watering numbers actually. They just come out of your mouth like they’re nothing. But if you actually pause for a moment and consider it, they’re breathtaking. You really are pushing what is possible.

I mean, I’m sure there’s websites out there which exceed that, but getting onto compliance, which is going to be my next question. There can’t be an industry where compliance is more important than banking, I mean, maybe there is, but it feels like banking and compliance. And you’ve got how many countries? 70 odd countries, each of those with a different set of criteria for compliance. Just open that box a little bit. I mean, that must have been fun.

[00:10:46] Jon Ang: So think of it as every country has some sort of monetary authority that governs the banks. So you’ve got that monetary authority that sets this bunch of rules that you’ve got to follow. Then they’ve got pretty much an association of banks in a specific country that listens to that. And below that you’ve got the banks that have to obey all these rules. And then we have to talk to all three organisations in every single country that’s out there that wants to use our CMS. So that’s basically it.

And obviously this did not start in 2016, or at once. But across time, all of these individual countries that need to use the CMS has gone through the process, and talked to us, and we’ve gone through making it work for them. And pretty much every single country has their own set of rules. But the idea of good compliance, good governance, good security, is rooted in good practices. So it’s not that we’re trying these things every single time fresh, you know?

[00:11:43] Nathan Wrigley: Given that you are working with one company, so Standard Chartered is obviously spread out amongst all these different countries, does that make that piece a little bit easier? So Standard Chartered to take care of the compliance. Do they give you the documentation, you sign it off? Because if you were to work with 70 different companies in 70 different countries, that’s your entire project grinding to a halt, I imagine.

So do they come to you with their lawyers and say, if you can satisfy this stack of requirements, we are good to go?

[00:12:08] Jon Ang: It’s a bit of that but it’s also, it’s 85,000 employees. And these regulations, they change on a regular basis. And it’s not like, you pass it on day one, you’re going to pass it on day a hundred again. They might come back and say, oh, there’s something new that we have to talk to you about. And they might not know actually how to pass this, because it’s their first time dealing with this as well.

So there’s a lot of discussions and collaboration, I guess, between Human Made and Standard Chartered. There is a central team that we work with, but they are fairly open on figuring this out with us. We work together to get through these regulations.

[00:12:40] Tom Willmot: Something else I think that’s worth mentioning is there’s also industry compliance regulation. And so I think we’re probably the only WordPress agency with the OSPAR compliance, which is the kind of banking industry, digital compliance process which took I think maybe a year for us to go through that process. We were audited by Deloitte, and then they sign you off. And so that helps a lot because it’s like, once you’ve got that sign off, then the bank can kind of trust that most of what you’re doing meets their compliance.

[00:13:04] Nathan Wrigley: So did you do that in order to prize the door open to the financial sector, or did you do that so that Standard Chartered could come on?

[00:13:12] Tom Willmot: Yeah, actually did that fairly late into working with Standard Chartered. They were able to, it goes back to there’s like 85,000 employees, there’s a lot of internal politics and stuff too, as one can imagine. And so we were able to avoid needing to meet that highest level of compliance for the first few years.

[00:13:29] Nathan Wrigley: And I’m guessing that was not a toy. I imagine that that was a fairly serious piece of paperwork.

[00:13:34] Tom Willmot: For sure. I think it cost us like a hundred grand.

[00:13:36] Nathan Wrigley: We’re at WordCamp EU, and if we were to walk out those doors, we’re surrounded by all manner of different people using WordPress. Some of them may be freelancers, they’ve got a couple of websites. And then at the other end of the spectrum, there’s you guys. How easy is it to convince a company like Standard Chartered that WordPress is not a toy?

[00:13:54] Tom Willmot: I mean, it’s an interesting question because obviously we started talking to Standard Chartered in 2016, so that’s a long time ago. In the context of this question, back then the concerns were much more around scalability and security and performance. Actually, that one of the big hurdles that we faced to begin with is there really just weren’t examples of companies of that size using WordPress as their primary CMS in the way that Standard Chartered wanted to use it.

And so when they would come to the ecosystem and say, show us the biggest people using WordPress, and we would say, oh, PlayStation use it for their blog, or Skype use it for their blog. And so they had some big names, but they used it for small stuff. And so that was kind of a problem because Standard Chartered were like, well, we don’t want to move our blog to it. We are talking about making it the primary CMS of the bank that we’re going to mandate every employee use for the next 10 years. How can we trust that WordPress is up to the task?

[00:14:42] Nathan Wrigley: So did you have to saddle that burden as a company then? So it wasn’t leaning into, okay, that agency over there built that thing and we can sort of say, okay, that’s WordPress, and there’s another agency over there that built that. So did you have to do the job of convincing?

[00:14:56] Tom Willmot: Yeah, yeah, we just went for it. We were just like, of course WordPress can do this. I mean, the big thing that helped was that they had an internal senior stakeholder that really wanted WordPress. And so that meant we could work with him to figure out, you know, how do we satisfy the concerns of the bank? How do we sell this in the way it needs to be sold in? That was really much more common, especially back then. WordPress wasn’t in the conversations unless somebody internally wanted it, and then they would do the work.

[00:15:22] Nathan Wrigley: That’s an interesting bit of serendipity. There’s this one character in the company who potentially was the route in.

[00:15:29] Tom Willmot: Yeah, and that’s, almost every big project we did back then, there was some internal champion that had fought the fight to get it taken seriously. And then we could come with the data and the expertise to back up what they were saying.

These days, that’s definitely changed. Now WordPress just is in the conversation. Which CMS should we move to? WordPress is going to be the one that’s considered. And so that’s much easier.

[00:15:48] Nathan Wrigley: Is it? Do you not have to do any persuasion anymore?

[00:15:50] Tom Willmot: Not as much. I mean, you’d be surprised. These days WordPress is seen as more secure in the enterprise level. Like, open source generally is seen as more secure than proprietary often. And so that can actually be an advantage.

[00:16:00] Nathan Wrigley: That’s fascinating because my next question was exactly that. How do these big companies view an open source platform? Because it’s not like, I use the analogy sometimes, it’s not like they have the bat phone. There’s no person that they can immediately contact and say, we have something that’s broken, we need Core to be fixed. There is no bat phone.

And I would’ve thought, do you remember when, I think it was Log4j or something, there was this thing, maybe it was in 2019 or something like that, and there were all these pictures of this edifice held up by one Lego brick and that person, do you remember?

And that was all about the bat phone. We have nobody to contact to get this done. And I would’ve thought that would still be an obstacle and a difficult conversation to have. But maybe it’s just the rock solid nature of Core that kind of allows you to sidestep that.

[00:16:44] Tom Willmot: I mean there are just so many big examples now of WordPress being used that it’s, people will still have some of these concerns. Maybe they still have an idea that WordPress is not used for serious stuff. But then you just show them the huge list of like NASA, the White House, Standard Chartered, the New York Times. You just show them all of these brands, that helps.

[00:17:00] Jon Ang: I think there’s also a bit of that where, we mentioned that Standard Chartered had a senior stakeholder that really wanted WordPress because he’s used it, he likes it. The difference it makes against proprietary, very large CMSs. I think even right now you continue to have these people become senior stakeholders, to become CTOs of major companies. They’ve used WordPress maybe in their personal life as well, and they’re thinking, why wouldn’t I make this easier for the rest of my team? Why wouldn’t I make this easier for the rest of the world, and use something that’s good?

So there’s a lot of people coming to these spaces, into these roles that could say, yeah, let’s look at WordPress and figure it out. And just going back into what you were asking around, who did they co-op? I think this is one part, like, so we mentioned we’ve got this OSPAR compliance. We’ve probably gotten our SOC2 compliance as well. And we’re probably the only agency in the world, well, only WordPress agency in the world that has SOC2 as part of our setup.

They look at these things and did something that someone like Human Made is able to support them. You know, even if we are not WordPress support. We are their platform support. And WordPress is part of it. WordPress is what we do. But they call Human Made, I guess, to help them fix things, yeah.

[00:18:07] Nathan Wrigley: When you are, and I know this hasn’t been a pitching process as such, because you’ve been working with them for a decade or more, but do you ever lean into the whole, no vendor lock-in thing? Is that something that you big up or something that you sort of push to one side? Because obviously you would like to have them as a client forever more, but equally suggesting that, look, if some time down the road, you know, it’s not working out between us, that’s a really credible selling point of the CMS. But equally it might not be something that you wish to mention.

[00:18:37] Jon Ang: That is actually something we mention in almost every single one of our sales stacks, that we are not there to lock you in. By using WordPress, by working with Human Made, we make everything possible for you to move away if you ever wanted to in the future. And it might be that you still stay with WordPress, but maybe Human Made is not the company you want to work with in the future, that’s fine.

But your entire platform remains open source. It remains portable, remains yours. And that’s something we’re very serious about, to the point that like we have worked with large Fortune 500s to open source what we’ve built for them, so that it could be maintained beyond Human Made, so that their team could continue to work on it, to extend that into their own product.

And that’s something that I think is built into our DNA. As part of this, the banks, this Fortune 500s, they believe in this and therefore they don’t feel locked in, and therefore they feel more compelled to invest in it. Yeah, I think that’s a lot of that.

[00:19:35] Nathan Wrigley: I have this impression, and this is really nothing to do with this conversation. I haven’t even written it down. But there seems to be a push towards this open banking standard. I don’t really know much about it, but there seems to be a push to make banking transactions a much more open protocol as well. So that’s kind of a curious overlap.

[00:19:50] Tom Willmot: I mean, I think there is just, the trends over the last decade have been in open source’s favor, right? That people, we’re going to talk a bit about this again in our talk, but there’s, I’ve now, as a bank, been through multiple decades of being locked into proprietary platforms, I’ve felt the pain and expense of that. That’s where Standard Chartered were when we got involved.

They were running a CMS that had been end of lifed by the company, and they were having to pay for that company to keep that CMS on life support just for them. And that was incredibly expensive. The CMS was terrible. It was super painful. I remember hearing early on actually, that they had 40 people on site that they were paying for full-time from the CMS vendor, because every single content edit had to be done by the CMS vendor. They couldn’t do it themselves.

Absolutely, it’s in our DNA. Like, we care a lot about growing WordPress, and so there being no lock in a big part of that. But also, all of these customers have felt the pain of lock in so much that it’s like a huge selling point. We couldn’t afford to not mention it. It’s such a benefit of WordPress.

[00:20:48] Nathan Wrigley: Okay, so lock in is one thing, but if you had to cherry pick just one or two things that make it easy to pitch WordPress at this level. So the vast majority of the people listening to this podcast will have no experience dealing with clients of the nature of Human Made. But they might be curious, you know, it’s nice to hear. What are the things at this enterprise level, that you can say, okay, WordPress has this? Just one or two things.

[00:21:12] Tom Willmot: Yeah, yeah. I mean, I think there’s two kind of, I think fairly obvious ones that I’ll mention up front. One is just how flexible WordPress is. Like, a lot of these proprietary systems are not that flexible and customisation is very hard and expensive. And the reality for big enterprise is they’ve got a ton of like weird stuff that they need to integrate with. They’ve got a ton of weird, unique workflows that they need to support. And WordPress is just like, can do all of that really easily. So the flexibility’s a big selling point.

I think the interesting one that maybe listeners won’t realise, and which like honestly still surprises me to this day actually, is just how important the usability of WordPress is. I mean enterprise software generally is like known to be terrible to use, and that’s really true even in the enterprise CMS space. Even today with the like major enterprise CMSs, if you actually see the backends, they’re all pretty awful. And so often what we do is we go in and we like demo, and they’re like blown away.

[00:22:04] Nathan Wrigley: Genuinely blown away.

[00:22:05] Tom Willmot: Yeah.

[00:22:05] Nathan Wrigley: That’s fascinating.

[00:22:07] Jon Ang: I think another number you could take away as well is that the market share of WordPress in Japan is something like 80%. 80% of websites in Japan use WordPress. Not a lot of that is enterprise yet, but whenever I do demo just default Gutenberg, I am showing them creating a block, I am making changes to the font sizes, I’m moving things up and down. They are like, that’s possible?

And again, like this is just them looking at this, right? We’ve not even like built the custom blocks, made it tuned to the design. And I take a look at the backend that Tom just mentioned, and it would be something that WordPress was maybe 20 years ago when it was first created and. A lot of this really enterprise CMSs that have not moved on.

So Gutenberg is, I think it’s a major, major piece that people get interested in. And once you then continue to build that into the way that they think about workflows, content approvals, the way that it integrates into other APIs, and all this visualisation is just showing up, straight up on their backend editor. It’s just so much more amazing, yeah.

[00:23:10] Tom Willmot: This just reminds me of another story from, this is not from Standard Chartered actually, this is another big enterprise customer. When we went in for like the initial discovery, the way that they managed their online catalog, they were like a product company, they had a custom Java application that ran on one Windows XP PC. All of the content edits had to be done on that computer through that Java application.

And so like the idea that multiple people could log in and edit content was a major selling feature for them. Again, like I said, I still get surprised by this. It’s so easy to take for granted the stuff that WordPress does. But actually, in enterprise, a lot of that is pretty groundbreaking.

[00:23:45] Nathan Wrigley: Yeah, it’s interesting. I recall the joy I found when I first opened up Gutenberg and I could move a paragraph up and down. And I’ve completely lost that appreciation for that because I’m in it every single day. And in fact, you get to the point where you only see the things that it can’t do because you’re just really familiar with it. But the description that you’ve just given, it is quite a profound technology, isn’t it? And because I’m so familiar with it, can’t see the wood for the trees.

[00:24:09] Tom Willmot: It’s one of my favorite things, you know, especially in a company like Standard Chartered, there’s 500 people using that. Their entire job, they’re spending in that, doing those workflows. And so like the transformation that something like WordPress can bring to just like the quality of their life at work is huge.

[00:24:23] Nathan Wrigley: Is there anything though where you have to have the opposite discussion? So you’ve demonstrated it and they find that there’s drawbacks to WordPress. Do you have to convince them of things in the WordPress space? So you’ve just demonstrated a couple of things where it was fairly easy. You know, you show them the block editor, great. Are there bits of WordPress Core that they’re not that happy with?

[00:24:41] Tom Willmot: I think most of that, mostly not with the Core software. Like, I honestly think the Core software is like industry leading. I think the biggest challenge they face goes a little bit back to the bat phone piece, which is that they look at the WordPress ecosystem and it’s like how am I supposed to interact with this? I need to find a host. I need to find an agency. There’s all these plugins. Can I use those? What are WordCamps?

And so it’s like, it’s pretty difficult for an enterprise to like understand how that should be put together to meet their needs, and how do they procure it? In enterprise software, there’s usually an organisation, a vendor, that you can go and deal with that’s packaged all of that very nicely, and can like tell you what the roadmap is.

And so that tends to be the biggest challenge, and that’s like most of what the work we do is like, how can we package what’s available in the WordPress ecosystem? But like make it available in a way that these companies are going to understand in the terminology they use, provide them with the roadmaps and the confidence that they need to be able to say like, yeah, okay, we’re going to use it.

And to some degree hide all the mess and the chaos, which are like, is a real strength for the ecosystem but, yeah, can make it difficult for someone, a digital executive who like doesn’t really know that much about the ecosystem, and it’s probably going to get freaked out if they like go to the plugins directory and are like, oh, I need Salesforce. That’s not a great entry point.

[00:25:57] Jon Ang: I think there’s also a lot of work that we do to help them understand that moving alongside WordPress’s innovations is good for you. They’ve spent last, what, 9, 8, 9 years, 10 years, like believing in that. So it doesn’t take us a lot of effort saying, this is what WordPress is thinking about in the next few versions. Given the amount of Core committers we have on the project, we kind of can get a good sense of where the roadmap of the project is going. And then we kind of tell them ahead of time. So when it does come out in an actual Core version, like a major version update, then they already knew about it, maybe like a year ago. They’re thinking, okay, great, now we get to use it.

[00:26:33] Nathan Wrigley: If I was to look at the Standard Chartered backend, would I recognise it? Would it be something which is entirely familiar to me, or is there just a ton of bespoke stuff in there which makes it, you know, usable for them? So I’m thinking of things like, you’ve built custom workflows so that people who are, I don’t know on the editorial blog team or whatever, they can get their work done more quickly, or permissions which allow them to access this block, particular attribute of that block or not. So really, I’m just opening it up. Have you built a bunch of custom stuff for them to use?

[00:27:04] Jon Ang: There’s a lot of custom stuff. I’ll say that our focus in making sure that they stay open and they’re not bound to, you know, anything that we built that is just not understandable by them. So we continue to use the WordPress language, I guess. Things that feel like it should be part of the block editor, how the workflow should be placed. It should be part of the published button, should it show up as a separate overlay and so on? All of that is taken into the understanding of how WordPress kind of demands it, and we present it in a very similar way.

So even if you have someone that’s new to the bank, you know, but that person’s used WordPress before, they should be able to quickly understand how this is all going.

Now obviously there are bank rules, and workflows, and regulations that they have to be like inducted into, but the understanding of how to build a content in the platform that’s built for them should be something that you could get it understood in 30 minutes or an hour. You would probably see it about 60, 70% as what you would usually see in WordPress. But the rest of it, again, is still built within the WordPress design language.

[00:28:05] Nathan Wrigley: So it looks the same. So it looks like a WordPress site, but there’s obviously some custom bits and pieces, okay.

[00:28:10] Jon Ang: Where you would expect things to be will be where we place it, like the extra buttons, extra workflows, and so on. They’ll be exactly where you think you’ll be clicking the publish button, for example.

[00:28:19] Nathan Wrigley: So, I’m making air quotes, you are using modern WordPress, I’m guessing. So this is blocks, this is Site Editing. Tell us a little bit about that. Have you got some sort of custom block functionality in there? And I’m guessing it’s a Site Editing theme, a Full Site Editing

[00:28:35] Jon Ang: So it is some Full Site Editing, and then the way we’re set up obviously is that we try to build patterns on Core blocks. So there’s obviously a lot of custom blocks, but the more we do with the default WordPress blocks. We style them. The more that they benefit when WordPress decides to make some improvements and so on. So that’s a lot of that.

And part of our talk, we’ll talk about the integrations of different APIs into the blocks themselves. So, we are pulling, let’s say investor data, stock prices, and so on directly from all these APIs outside, and then into this charting systems that we’ve built within Gutenberg, so you get to build a chart within the block editor itself.

And there will be visuals, that you’ll be able to see in our talk. But I think that’s probably one of the most customised things out there. But it goes back to what’s using the virtues for the block editor, gives you the visual of what you’re trying to create, and then it allows you the press button to create this graph that you want to create within WordPress.

When you see these graphs on the WordPress website that we’ve created for Standard Chartered, it’s not an image that someone created in Microsoft Word. It is something that’s created within WordPress and generated directly inside there. So that’s basically what, well, part of what we’ve done for the block editor.

[00:29:47] Nathan Wrigley: I always had this impression that the block editor enabled blocks to basically be mini applications. So, in the example of banking, like you said, you put a block onto the page, it’s hooked up to some API or something, and then you can provide some custom infographic or something like that. You know, you can see it on the back end and you click publish and it looks basically the same on the front end.

The curious thing about that is it seems like only the enterprise can get there because that’s so much work. But the promise is so profound. These little mini applications, you know, for a real estate agent, like a house block or something like that. And in your case, display information about last year’s stats for Standard Chartered. I just think that’s the power of it, but so few people can pull it off because of the time and expense.

[00:30:33] Jon Ang: I’ll say that at an enterprise level, obviously you have to work with someone like Human Made as an enterprise agency to get the maximum out of this very unique API data. You don’t get access to Morningstar’s API data as a regular person, for example. But if you’re talking about, let’s say a real estate person, there are plugins out there that plug into, let’s say the country’s real estate data that automates a lot of this. And these blocks are already built for that.

So I think if you were in that industry and then talking to even a regular agency, they’ll be able to find these plugins that do a lot of that. And I said, these vendors, for example, they realise the need their software to integrate into WordPress. They will be building blocks that directly integrate that.

An example of that is HubSpot. They do a lot of integration into WordPress, and then you’ve got blocks to do that. Even if you don’t have a specific official plugin. Gravity Forms, does a lot of integration into separate ecosystems and so on.

So you get actually all these block transformation integrations and so on with this like popular plugins out there. And the more we use WordPress and the block editor together, I think the more of these blocks will become very accessible to the general public.

[00:31:40] Nathan Wrigley: How do you even have that conversation with a client like Standard Chartered though, because they’re into banking, you are into building websites, there can’t be a great deal of overlap in, like we would love this to be on the website. Okay, we can build that. How does that conversation even happen? How do you draw out of them, we can build that into a block? Because you are so miles apart in your areas of expertise.

[00:32:02] Tom Willmot: Really what we did is we worked with Standard Chartered to help them build a web platform team internally. And so the platform is really run as a 50/50 partnership between Human Made and the web platform team. They then act as the kind of internal service provider to all of these like country markets. Compliance and IT, and all of these other stakeholders, they bring the banking knowledge, and we bring the WordPress knowledge. It’s like we’ve got to work very, very closely together to make the most of that.

[00:32:30] Nathan Wrigley: So it’s a case of often them coming to you saying, can this be done?

[00:32:33] Tom Willmot: Yeah. And, you know, we’ve been running like two week sprints now for 8 years or something. So it’s like a very deep, agile relationship.

[00:32:40] Nathan Wrigley: This project, fingers crossed, has no end goal. There’s no date at which it’s done.

[00:32:45] Tom Willmot: No, exactly.

[00:32:46] Nathan Wrigley: Every two weeks, lets see we’re at.

[00:32:48] Tom Willmot: WordPress obviously has a pretty fast paced and iterative development process, right? There’s new stuff coming out pretty regularly. The bank has got aggressive growth targets and marketing plans across all of those countries. I mean, something else we didn’t talk about in terms of the lock-in, some of these country level teams will have their own agency relationships, maybe a marketing agency or something.

And so we also act as a centralised agency coordinator service so that those other agencies can plug into the right bits of the website, but in a safe way that complies with the development processes and things that are necessary.

[00:33:20] Nathan Wrigley: Just to finish it off, a few little questions around accessibility and multilingual and things like that. So multilingual, I suppose is fairly self-evident. You’ve got to translate this website into just about every language on the planet, I would’ve imagined. So that’s a whole body of work.

[00:33:36] Tom Willmot: One of the ways actually that, I mean, multilingual is somewhat easier at this big enterprise level because essentially every country just has its own team and its own website. And so actually multilingual is just solved with multi-site. Standard Chartered do not translate their content, they rewrite it in that language. Different people write the content using multi-site.

[00:33:52] Nathan Wrigley: But in terms of accessibility, very hot topic in the year 2025. And I’m guessing, again, goes back to compliance. I’m guessing there’s no missteps here. You can’t get this wrong. So just tell us about what’s been going on in that sphere.

[00:34:06] Jon Ang: I think the way that we’re set up as well is that every single team has their own site, which means that every deploy gets checked in terms of accessibility. So we would expect that any designs that come along is accessible in the first place. So they’ve done their work. And then when we actually build the front end for it, and a part of their team also builds the front end, it goes through all this accessibility checker stuff that we’ve already built across time that I think feeds the WCAG to 2.2 AA Plus standards.

So every single deploy is checked against that to make sure it is accessible. At any point in time where this looked at and said, okay, there should be improvements that we need to be making. It’s part of the whole two week adjustments that we continue to make sure that all these like websites are accessible.

It doesn’t matter whether it is a Chinese website or Japanese website, where maybe like they’re not held to the same EU accessibility laws, but every piece is actually taken to the same level and held out to the belief that, if we’re accessible in a specific space, that’s should be the same everywhere else.

[00:35:06] Tom Willmot: You know, something to say on accessibility, often listeners will probably feel this. It can be difficult to get clients to care about it enough to pay you to do the work necessary to make it accessible, right? That’s a common problem. It’s one of the really nice things about working with a heavily compliance regulated industry like Standard Chartered. Like, actually, they really care about it. And so they really do the work. They want to invest to make sure the platform can enable them and support them as much as possible to like meet their compliance requirements, yeah.

[00:35:31] Nathan Wrigley: Has the more recent WordPress past, let’s say since about September last year, has that caused any ripples in the nature of the work that you do? Or has it required a different relationship with your clients, more explaining what’s going on in the community? Has there been any kind of blowback from the pace of Core amendments? I think we’re maybe getting more back on track with that. But I just wondered if there were any ripples?

[00:35:58] Tom Willmot: The dropping from three to one releases a year, like I think in many parts of enterprise, it’s kind of helpful actually, like three releases a year is pretty fast. And so certainly that’s not raising eyebrows at the enterprise level.

I think just like, we’ve got a mix of clients, some who are the kind of stakeholder who loves WordPress and really wants it, and so they’re perhaps a little bit more plugged in. And so, yeah, they’ve got more questions. And then you’ve got the other 50% of clients who know nothing about it.

[00:36:22] Jon Ang: And I think that when we are building these enterprise websites, right, we are kind of playing at a slightly different playing field. So they’re not using the typical consumer level plugins and so on. They’re using the service that we’ve provided them. So when you look at this, they look at this as the Human Made WordPress thing that we’ve been doing. And then when they look at whether they can trust this thing, they’re looking at the service that we provide. So they’re not concerned about what’s going else out there. They’re concerned about whether we have the ability to continue providing this service and nothing has said otherwise, yeah.

[00:36:53] Nathan Wrigley: Okay, very last question then. How much of this can be contributed back into the project? Are there any facets of this, little bits over here or over there that can be contributed back to the community? I don’t know where they would land. And if that’s a question you can’t answer, how does Human Made take on the position of contributing back? What’s your posture on that?

[00:37:13] Jon Ang: So Standard Chartered was definitely one of the earlier adopters of Gutenberg. But I think one of the earliest, earliest adopters we had was a part of Disney, where we were using version 0.2 beta of Gutenberg. It was not much in Core. We’re talking about a very beta version of it. So we were building sidebars, we were building like all these things that, Gutenberg didn’t have yet. It was just paragraphs and so on, like back then.

So we were doing that and we were contributing back the idea of it, back to the project. And so you’re going to hear from our talk how we’ve already completed collaborative editing in Human Made. We are now talking to people outside about contributing the idea back to it as well. I think the growth of the block editor itself has been stuff that we are, you know, pushed back in as well. And then I’ll say that’s one part.

The other part as well is the security aspects of stuff. So banks are checked on CVEs and all these pieces, and their security team are on contact points with us on a regular basis. So when we do learn of these things that they’re concerned about, and this is something that we’ve then fixed for them, we then contribute it back to the project.

So I know John Blackbourn works in Human Made, he’s the WordPress Security Team lead. Big part of his job is making sure that the projects that we work on is secure, but the stuff that we have secured then afterwards is contributed back to the WordPress project. So there’s a lot of that ongoing.

[00:38:30] Nathan Wrigley: Do you blow your own trumpet about contributions back or do you like to keep it quiet? I was having a conversation with somebody in the Drupal space recently, and it seems like there’s this whole thing that they’ve got there where, if you contribute, you accrue benefits in terms of, you attend an event like a Drupal Con and you can sponsor because you did some things. And so you had to blow your own trumpet in a way to be acknowledged as having done the things.

I don’t know what your position on that is, whether you like to sort of shout it from the rooftops. We did this, we contributed this back, or I don’t know if it’s more softly, softly than that.

[00:39:00] Tom Willmot: Yeah, I think I’m quite a fan actually of the maker taker stuff that Drupal does. Like, I think they do some really interesting things to benefit maker organisations, which I think has the right incentives then associated with it. Something I learned about, they’ve worked with some of the federal and public sector contracting authorities to preference maker organisations in the RFP processes that they do. So I think stuff like that’s actually really good. I would like to see some of that on the WordPress side.

We really do trumpet it when we’re talking to clients because it’s a big part of our sales pitch, right? That’s how we contribute back to WordPress. We’re a part of the Security Team. That means that we can use Gutenberg way before it’s shipped in Core, which means by the time it’s shipping in Core, Standard Chartered are already using it. They’re already familiar with it. There’s not a big expensive transition. It’s not a shock.

The collaborative editing that Jon mentioned, they needed real time editing in the CMS for multiple users, and we were able to take the like alpha version that the Core team are working on, finish that off and do the work to get that running in production.

[00:39:58] Nathan Wrigley: Yeah, just snuck that in. I mean, that’s a whole episode.

[00:40:01] Tom Willmot: Yeah. And you know, that’s really interesting. They’ve been running that in production for a year or more. So then, yeah, there’s obviously stuff there that is like a two-way thing. So some stuff is like, okay, we build something unique and that’s like released open source, but actually more of it is just we are using the stuff that’s coming ahead of time, so then what we are learning can feed back, and make sure that when that is ready, it’s like already learnt the enterprise lessons it needs to learn to be relevant or whatever, yeah.

[00:40:26] Nathan Wrigley: Well, that was a really, honestly, I got so much out of that. Thank you very much, Tom Willmot and Jon Ang for talking to me today all about your project with Standard Chartered. Thank you very much.

[00:40:35] Tom Willmot: Great to be here and a great way to kick off the day. We’ve recorded as our first thing for the conference, so that’s pretty cool.

[00:40:41] Jon Ang: Thank you for helping us walk through our talk as well. So a lot of what we mentioned, it’s probably going to be mentioned our talk. But it’s been good to be here.

On the podcast today we have Tom Willmot and Jon Ang.

Tom is the co-founder of Human Made, an enterprise WordPress agency that’s been pushing the boundaries of what WordPress can do since its inception. Jon is also with Human Made, and together they bring a huge amount of experience working with major clients on large-scale projects. At this year’s WordCamp Europe in Basel, they presented a case study: their long-term, continually evolving work with the global banking giant Standard Chartered.

Most listeners might not be working at the scale of 85,000 employees, 70 countries, and hundreds of millions of page views a month, but Tom and Jon are here to share insights from the top end of WordPress implementation.

They explain how Human Made helped Standard Chartered shift from proprietary CMS lock-in to a flexible, open-source, Gutenberg-powered WordPress solution that serves as the main web platform for the bank across all its markets.

We talk about the unique compliance and security challenges of working in the banking sector, what it takes to persuade giant enterprises that WordPress is ‘not a toy’, and how to support hundreds of CMS users with custom workflows and integrations.

Tom and Jon discuss the specifics of scaling WordPress for the enterprise, from accessibility and multilingual setups to custom block development and real-time collaborative editing.

We also hear how Human Made works with clients to contribute innovations and security improvements back to the WordPress community, ensuring that lessons learned at the enterprise level benefit everyone.

If you’re curious about how WordPress powers mission-critical web infrastructure for some of the world’s biggest organisations, or how you might pitch WordPress for enterprise use, this episode is for you.

Useful links

Human Made

Standard Chartered

Tom and Jon’s WordCamp Europe presentation: Banking on WordPress: Inside a FTSE 50 Bank’s Global Platform

Standard Chartered: banking on the future

June 18, 2025  13:41:37
In this episode of Emerging Tech, host Dave talks to Tole, an innovative developer who shares his journey from mobile to WordPress. He discusses his MCP integration in ConvoWorks for AI workflows.
June 18, 2025  12:00:00

Have you enabled reCAPTCHA thinking it would shield you against spam, only to find bots slipping through? You’re not alone. Those little puzzles prove that some visitors are human, but they don’t always stop the spam messages.

It may be disappointing to hear, but reCAPTCHA seriously annoys site visitors while only doing a moderate job of preventing spam. You (and your visitors) deserve something much better.

Common issues with reCAPTCHA

Though a popular option, reCAPTCHA doesn’t always deliver the spam protection you need. Let’s look at just a few key reasons why this is the case, from user frustration and accessibility concerns to bots getting through.

1. User friction and poor accessibility

For those caught in an endless loop of trying to find all the squares that include a bicycle, it’s no surprise that user frustration tops the list of reasons that reCAPTCHA isn’t a great option.

In fact, a study by Stanford showed that humans need an average of ten seconds to solve Google reCAPTCHAs and up to 30 seconds for audio. This study showed that users abandon the page 29% of the time without even trying to solve it. Imagine losing a sale because your customer couldn’t pass the test!

2. Low effectiveness against advanced bots and CAPTCHA farms

While effective when it was first released, AI bots can now bypass reCAPTCHA with 99.8% accuracy, according to the Merchant Risk Council.

Where bots aren’t effective, there are even entire “CAPTCHA farms” that use human labor to bypass CAPTCHAs at astonishing rates.

Either way, you’ll likely be bogged down with tons of annoying, dangerous spam — even with reCAPTCHA.

3. A negative impact on site performance and load times

On the internet, every second counts. Visitors won’t wait more than a couple of seconds for your site to load before moving on.

That’s why site owners put so much effort into optimizing images, finding a high-performing host, installing the right speed plugins, and more.

Unfortunately, using reCAPTCHA can undo a lot of that hard work. PagePipe’s testing found that reCAPTCHA adds a full half‑second lag to a site’s load time, costing you visitors and likely customers. After all, 53% of mobile users abandon sites that take over three seconds to load.

Plus, this likely has a serious (negative) impact on Core Web Vitals. This can drop your rankings so fewer visitors find your slow‑loading site to begin with.

4. False positives galore

When reCAPTCHA flags a submission as a false positive, you’re inadvertently telling your visitors that they aren’t even human.

For example, some reCAPTCHAs flag super fast form submissions under the assumption that, when someone fills out a form too quickly, it must be a bot. But there are some people who are simply fast typers — they could be blocked from your site because of their typing prowess!

The inconvenience and potential lost sales that result from false positives simply aren’t worth the risk.

Akismet is your superior spam protection solution

With the drawbacks of reCAPTCHA well understood, let’s now think about a scenario where you don’t have to worry about losing clients or driving away new subscribers by confronting them with accusations of being bots.

The solution does exist, and it’s called Akismet.

Akismet is an anti-spam tool that works behind the scenes on nearly any type of site (WordPress, Drupal, etc.) to detect and block spam in real time.

Its advanced AI algorithm is constantly learning from the network of over 100 million protected sites to maintain an incredible 99.999% accuracy rate.

It doesn’t slow down your site, doesn’t challenge your visitors with annoying tests (it’s in the background, remember?), and can be customized for your individual site with the opportunity for you to manually review submissions and provide feedback.

To date, it’s blocked over 550 billion spam messages, with 76 million pieces of additional spam annihilated each day. Let’s look at how Akismet accomplishes this:

Next-generation AI and machine learning technology

Akismet’s AI uses the content within a form submission to identify automated spam attempts and bots. In fact, their advanced machine learning technology analyzes real spam data from more than 100 million users and is always improving.

Real-time analysis of user submissions

Akismet analyzes form submissions in real time, making split-second decisions about whether a comment or form entry is legitimate or spam. This keeps your site free of spam without any work required on your end.

99.99% spam detection accuracy

Akismet has a 99% spam detection accuracy rate with the track record to back up the claim. Notably, Kit switched to Akismet and saved 20 hours per customer every month without losing any leads. That kind of performance shows how effective spam protection doesn’t have to come at the cost of user experience.

The largest spam database in the world

Akismet is powered by the largest spam database on the internet. Every time it catches a new spam pattern, it feeds that data back into its systems, improving accuracy across all the sites it protects.

Core advantages of Akismet over reCAPTCHA

Now that you’ve seen how Akismet works, let’s zoom in on the key differences between it and reCAPTCHA.

1. Content‑based analysis, which targets spam (instead of users)

Akismet analyzes content directly rather than relying on click-based tests or suspicious IP lists. It looks at the substance of the message and compares it against patterns of known spam behavior, which makes it far more effective at catching the source.

This also means that it doesn’t get in the way of real users because it’s not constantly passing judgment on their behavior (which slows down sites) or asking them to complete tests.

2. Zero friction for site visitors

Friction slows down conversions and that’s precisely what reCAPTCHA causes. It introduces friction and interrupts your visitors with tedious tasks before they can even submit a form. If they get it wrong once, many won’t bother trying again.

Akismet removes that friction. It doesn’t bother users with puzzles, challenges, or visual tests. It runs quietly in the background, allowing visitors to stay focused and engaged without even noticing it.

3. Ongoing adaptation to new spam patterns

One of the most impressive benefits of Akismet often goes unnoticed, and that’s its ability to adapt to new spam methods and bots in real time. Its machine learning engine takes notes from every spam attempt it blocks — across all the websites it protects.

That means it’s not just reacting to spam. It’s predicting and adapting in real time, keeping your forms clean no matter how spam trends shift.

4. Zero impact on performance and site speed

Unlike reCAPTCHA, which can add lag to your forms and frustrate visitors with slow load times, Akismet promises zero impact on performance. Since it uses the cloud to store data, Akismet won’t affect your site speed, bounce rates, or conversion rates. Compare that to the half‑second load‑time drag reCAPTCHA brings to the table and the choice becomes clear.

Yes, Akismet is the perfect alternative to CAPTCHA technology — it quietly filters out spam in the background without adding friction for real users.

reCAPTCHA not stopping spam? Switch to Akismet in minutes

Why settle for a tool that slows down your site, frustrates visitors, and still lets spam slip through? Thankfully, with Akismet, you don’t have to.

Getting started only takes a few minutes. Simply:

  1. Remove the CAPTCHAs that turn visitors away.
  2. Activate Akismet on your WordPress site.
  3. Let Akismet handle the spam while you focus on growing your site and improving conversions.

Ready to stop making your visitors prove they’re human? Add Akismet to your site and see how convenient set‑it‑and‑forget‑it spam protection can be.

June 18, 2025  11:47:18
When it comes to building successful plugins and products for WordPress or WooCommerce, everyone talks about the importance of “community.” But what does that really mean—and who should you be building community with? In a recent episode of Woo Product Chat, hosts Katie Keith, James Kemp, and special guest Jonathan Wold dove deep into the […]
June 17, 2025  09:51:08
In the first of the series, Media Playbook, Rae and Adam discuss how to connect WordPress businesses with the media. They share tips on crafting newsworthy stories and building relationships for better visibility.
June 16, 2025  08:31:00
Since 2018, WooCommerce has been a vital partner for Do the Woo, promoting the brand and providing resources. They will now sponsor Open Channels FM to strengthen community engagement and support.
June 15, 2025  14:52:18

Hosted by Birgit Pauli-Haack, with special guest Anne McCarthy, this episode dives into recent happenings in the WordPress ecosystem, including updates from WordCamp Europe, the launch of the new WordPress AI Team, the Pride Photo Drive initiative, and the latest Gutenberg releases (20.9 and 21.0).

WordCamp Europe Recap

The community celebrated new milestones, including all workshops being recorded and promptly published to WordPress TV, making it easier for everyone to catch up. Notable sessions covered digital freedom, block development, and innovative ways to extend WordPress without custom blocks. There was also a special mention of the WordPress Campus Connect pilot at the University of Pisa, enabling students to earn credits through WordPress contributions.

WordPress AI Team Launch

WordPress has officially formed a core AI Team, supported by both Automattic and Google contributors, focusing on foundational tools and integrations to bring AI capabilities to the platform. The team is working on projects like the AI Services plugin, the Model Context Protocol (MCP), and the WP Feature API, each designed to provide standardized and extensible AI solutions for the WordPress ecosystem.

Pride Photo Drive

Anne McCarthy introduced the Pride Photo Drive: an open photo submission event to boost LGBTQ+ representation in the WordPress Photo Directory. The initiative encourages everyone (not just the LGBTQ+ community) to contribute, with fun incentives and cash prizes, emphasizing the importance of diverse, high-quality imagery for web creators.

Gutenberg 20.9 & 21.0 Releases

The latest Gutenberg plugin releases bring a host of improvements and enhancements:

  • A shift towards more modern and maintainable codebase (SASS modules),
  • Usability changes to block settings and tool panels,
  • Continued iteration on “content-only” editing for simpler, safer user experiences,
  • Accessibility improvements and bug fixes suggested by new and long-time contributors,
  • Ongoing expansion of the Interactivity API for richer client-side experiences.

Community & Contribution

Anne and Birgit emphasize the power of direct community feedback—how user suggestions shape features and workflows. There’s an open call for more engagement, hallway hangouts, and broad collaboration beyond just in-person events.

This episode is packed with optimism and opportunities for WordPress users and contributors of all backgrounds to get involved—whether that’s through new tech like AI, creative community projects, or by shaping the future of Gutenberg.

Show Notes / Transcript

Show Notes

Special Guest: Anne McCarthy

Celebrating Pride Month

WordPress AI Team

WordCamp Europe Recordings

Gutenberg Releases

Stay in Touch

Transcript

Birgit Pauli-Haack: Ladies and gentlemen, welcome to our 118th episode of the Gutenberg Changelog podcast. In today’s episode, we will talk about WordCamp Europe and the WordPress new AI team, and Pride Photo Drive and the Gutenberg 20.9 and 21.0 releases. I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times, a developer advocate at Automattic, and core contributor to the WordPress open source project. With me today, relatively fresh back from the sabbatical, is Anne McCarthy. Thank you, Anne. Welcome back and I’m thrilled you’re on the show. How are you today?

Anne McCarthy: Thank you for having me. It is incredible to be back from sabbatical and also to be back to contributing with sponsorship, which is amazing. I was trying to do it coming back without it and to have to have that change so quickly. Coming back from sabbatical has been so energizing combined with Pride Month, so I can’t complain. I’m just excited to get into stuff and excited to be back in this space talking about this important work.

Birgit Pauli-Haack: Wonderful. Yeah, no, we’re all back contributing. It will be. We still have to kind of figure that out. I know that every team is kind of trying to get unplugged from what they were doing as part so they can contribute back. So the last time you were on the show, it was in November last year. Episode 111. So, so much has changed for the project and for you. What are you now working on at Automattic and respectively for WordPress? Yeah.

Anne McCarthy: So my job title has shifted a bit as well, to align with some of the changes that have happened. So we. I am now an architecture wrangler is the title I’m rolling with right now. And essentially the core of my job is the same. I’m looking across Automattic the community to find shared patterns, to accelerate work, to do work and to connect work. And so trying to make sure we’re moving in the same direction in the project. So working on things like roadmaps, breaking down work, helping for the future, teams get into contributing and figuring out important projects they can work on and providing support there, as well as collecting user feedback across different places and how it impacts things. So if we hear something, for example, from like an enterprise client, I recently did this. A couple weeks ago, there was a bug that came out from an enterprise client. I said, hey, who else has dealt with this? Aaron Jordan used to in publishing. What do you think? Hey, can we get someone to work on this? What are you all seeing? What feedback are you seeing? Here’s the feedback I’m seeing. So I’m still doing the same kind of work. Cool thing is now instead of working with about 100 engineers, I’m working with about 300, about 50 different teams. So internally there’s a lot more spread. But I’m really excited because it can really help influence and move faster on some of the stuff we do in the core project. So instead of things being a bit divorced and separated, especially from customer feedback and customer needs, we can now, you know, using Automattic spread of customers, use that to bring things that are foundational for all WordPress, because we cover so many different use cases between themes and plugins and hosting and enterprise and bloggers and all sorts of stuff. So I’m really excited to see increased collaboration there, including with the broader Five for the future groups, and encourage everyone to get involved, to share that feedback and join in the fun.

Birgit Pauli-Haack: That’s wonderful. Yeah, it sounds exciting. It also sounds like a lot of work, but, yeah.

Anne McCarthy: It’S good work. It’s good work because you get to kind of see things at the root, which is fine.

Birgit Pauli-Haack: Yeah, yeah. And you can also kind of see it happening when it’s fixed or something like that, or come together in a. In a very creative way. Yeah.

Announcements

So you also are the instigator of the Pride Photo Drive. Tell us about it.

Pride Photo Drive

Anne McCarthy: Yeah, so it’s inspired by what I’ve seen with other photo directories. And something that I think is really near and dear to me is representation really matters. And so if you can find things that actually resonate, whether with your culture, part of your identity, or where you live, it makes it easier when you’re creating websites. Like, websites are inherently quite visual. And so having really good photos that represent queer people is really awesome. And so, of course, you can’t have faces in this. But the whole point of the photo drive is to inspire some folks to contribute photos, increase representation in the photo directory, and honestly, just have some fun. Like, I think there is something fun about going out and having a reason to take a photo that I think, at least I enjoy someone who takes a lot of photos. There are some cash prizes for winners, both in terms of most submitted photos, and we’ll have some folks select the top photos. But honestly, like, you don’t need to be a part of the LGBTQ community to participate. It’s for everyone. And it’s just mainly to ensure when folks go and look for something that represents them, there’s a higher chance of finding high quality work for that. So I hope to see more kind of initiatives like that. And so if anyone wants to talk about doing more drives, I’m happy to share what I’ve done. It’s been very. It’s been pretty simple. So more people can do this for sure.

Birgit Pauli-Haack: Yeah. And we have a link to the call for photos on the LGBTDPress.com and there are also the rules and how you actually can upload it to WordPress photo directory. And I’m really excited about that. I, yeah. Was last year, not this year I missed it, but last year was at the Christopher Street Day here in Munich and that was kind of. Wow. I didn’t realize how big that was. Yeah. And it was about 600,000 people on the road and 60,000 people in the parade and yeah, totally took over the. The downtown. But I probably have a few pictures made there that I can upload there. Yeah. So yeah, but it was a good point for you to say no photos or no faces or people out there. People, yes, but no faces. Yeah. So that’s cool. Yeah. So, yeah.

WordPress New AI Team

And the second piece of announcement that we have is that WordPress has now an AI team. AI stands for artificial intelligence. There are two, three links actually that I can share with you. One is the welcome to the core AI team blog post, then the announcement and the hallway hangout and recap for the first hangout.

So the mission I understood it is to build foundational building blocks for AI integration in WordPress and the timing is ideal because of the rapid evolution of AI. Some people at WordCamp EU said, okay, are we not a little bit late or something like that? No, you can’t. Yeah, it’s just the right time because now the emerging standards are there, and WordPress could be an ideal platform for AI driven web apps. There are immediate plans to integrate LMMs directly into WordPress, but there are canonical plugins that are on the roadmap and packages that are abstracting the AI provider like AI Services or. And the core integration would be more like. Yeah, a little. A second step. And we know that everything is kind of in place. It has the full support from WordPress leadership, including Matt and Mary. And because they recognize the importance of the open web and ensure it’s central in the evolving landscape.

So what are the current initiatives? One is the AI services plugin from Felix Arntz. He’s on the team. But the team are right now James LePage from Automattic, Felix Arntz from Google as well as Pascal Bichler from Google and then Jeff Paul from TenUp. And all four have already some experience with AI in the space. And so there are three plugins that are being worked on. One is the AI services plugin Felix already publish that, and I’ll share links in the show Notes so you can look it up. And it’s an abstraction layer for multiple AI providers to enable plugin authors to unify the API for AI interactions. So you need your OpenAI API key or your CLAUDE API key or whatever you use, but then it helps you to include those services into whatever you want to do on the website. The other, the second one is the called MCP WP. MCP means Model Context Protocol. Those are servers to enable WordPress advanced AI integration with command line or plugins. So plugins say, okay, my plugin can do that with WordPress and you register those services and the AI can discover those on the site. I know that Jonathan Brassinger as well as Ryan Welcher have done some live streams on that and I can share some of that, the latest ones for on the show notes with the videos, so you can kind of follow along with that.

And the last plugin is the WP feature API. That’s a plugin coming from Automattic, and it structures WordPress features for better AI integration. It’s kind of pretty much it’s a standardized way to register resources for AI. That’s pretty much what I can say there. It exposes the server and client side functionality in WordPress so LMMs can tap into it if they have the right credentials. Yes. So that’s kind of what I know about it. I read quite a bit about AI agents and MCP and it’s all still a little murky, but I think that’s with any of the new services and new technologies that are kind of coming out that we all need to figure out the smallest use case to figure it all out. Jamie Marsland has interviewed James LePage about the new AI team. And it’s a video, it’s called Very Clicky. It’s called WordPress AI fights back, fight Back Begins. So but it’s really insightful and Jamie asked some great questions in it. Any thoughts from you?

Anne McCarthy: Yeah, that was such a good rundown. One of the big questions I’ve heard from people and I’ve been getting pings about is like, how do I join? How do I join? The team is creating a handbook at its early stages. You can join the core AI Slack channel. That’s the best place they’re holding meetings and they’re pulling together that context. So please get involved. The idea is to create a shared group of tooling that then plugin authors can reuse. It’s meant to provide a shared base. So for the MCP thing, the way I’ve been kind of thinking of it is like rather than rewriting every AI integration from scratch, you can reuse this to Talk, to have WordPress talk to LLMs. So like those sorts of things are kind of the current focus to provide tooling for people who want to use AI with WordPress, including with plugin authors and stuff like that. So that’s the current perspective. And if that appeals to you, you have ideas there, you have personal experience. Trying to make that work like that definitely is a great place to give feedback. And these are the early stages. So it’s a great time to get involved. But yeah, that to me is the biggest takeaway to do a great job covering everything. And I love that each team member has direct experience building stuff in line with that mission and value. I’m really excited about the canonical plugins and what we can do and packages that we can do to move this work forward and iterate following a similar model as the performance team.

Birgit Pauli-Haack: Yeah, Fabian Kagy and I were on a podcast with Nathan Wrigley on the WP Builds podcast and we talked a little bit. We talked about a lot of things, but we also talked a little bit about the 10up plugin classify, especially because the latest release actually included an open source way to have LMMs on your server. So every time you ask the AI something, it doesn’t go out to a central server, it stays on your site.

Well, you need of course a server with a little bit more oomph. But yeah, for those that want to use it for their internal communications or documentation, it’s definitely a great way to do this. And that’s why TenUp is also part of the team, and I share that also in the Show Notes, of course, both the podcast and the plugin.

So other news the what’s New for developer edition June 2025 is available now. Justin Tadlock collected lots of information speaking about being back to contributing, lots of information relevant to plugin authors, theme builders and agency freelancers, the freelance developers for Core, Gutenberg and Playground. And it’s pretty much the best post to catch up on the last two months of updates on WordPress. So check it out with the link on the show notes or you go to developer.WordPress.org news or blog. Either way, Both of them get you to the developer blog.

Community Contributions – WordCamp Europe

All right, so now that brings us to WordCamp Europe, first time. In contrast to previous WordCamps, all workshops have been recorded and all recordings have been already submitted to WordPress TV. That I only saw. That’s so cool. I only saw this on smaller WordCamps like in Karlsruhe or in Leipzig where there’s only one track or one or two tracks in only one day. But having two days with three tracks, everything already on WordPress TV, that’s a phenomenal achievement.

So I have a few favorites I want to kind of suggest to you. One is of course, the fireside chat with Mary Hubbard and Matt Mullerweg. They discussed, among other things, a lot of other things, but the. The WordPress Campus Connect project that’s being rolled out as the official program from the WordPress Foundation. And also Mary announced a pilot project with the University of Pisa in Italy where 5,000 students have 150 mandatory contribution hours and those will equate to six credits for college. So that’s going to be a phenomenal place.

Anne McCarthy: I’m so excited for that.

Birgit Pauli-Haack: Yeah, yeah. Getting the young folks involved in WordPress evolved in open source and also bringing them together with mentors in the technical fields. Yeah. So I’m really excited about that. It’s also more focused on the translations because that’s the humanities department there. But yeah, yeah, everything helps. Anything helps. Yeah.

Anne McCarthy: So I got my start in college so I would have loved. This would have been amazing. I was working on a WordPress multi site in college and if I could have had this as a chance to get to know the WordPress community rather than learning about it four years after. I think it would have been amazing to have this kind of opportunity and access and experience of open source early on. So I’m very, I agree with you. I’m very excited about that program.

Birgit Pauli-Haack: Yeah, yeah. I also had about. Took me about four years to kind of get into the community here. So yeah, it’s always something, something. Another great talk was by Noel Tock. The title was WordPress Without Borders, the Fight for Digital Freedom. And he not only shared his about his own charity work in the Ukraine, about rescuing dogs and bringing them back to their owners, but also about other charities who helped with finding kids, providing a roof over the head for people that were bombed out and other hardships. And he made us realize the True Impact of WordPress because all the agencies use WordPress, not all the agencies, but over 50% of them use WordPress for the website to fundraise and to connect with the communities.

So sorry my voice kind of gave out but that has partly to do with something like that. But I also got a gift from WordCamp Europe at home to suffer. There’s another cold that I’m fighting. That’s why I’m also sound so horsy. So sorry for that. Check it out. The block related talks were Ryan Welch’s workshop for the Block Development Cookbook and Milana Cap’s workshop around the Interactivity API. And that last one is really I didn’t see the first one, but the last one I saw and I learned more about the source and the namespace and how you can interact from one block to the next and exchange data. So that’s a really eye opener. Ellen Bauer talked about how block themes speed up stores and sites in WooCommerce and Robert O’ Rourke asks and provides answers to do you really need a custom block? And he walks you through how you can extend the block editor own blocks without writing your own custom blocks. But really, all the many great talks about the WordCamp Europe are online and there are many for content creators, developers, entrepreneurs, educators, contributors as well. So check out the WordPress TV space with all the recordings.

What’s Released – Gutenberg 20.9

And that brings us to Gutenberg releases. We start out with Gutenberg 20.9. So 20.9 was released on May 28th. We were a little late, but I was traveling and so do you want to start us off?

Enhancements

Anne McCarthy: Yeah, I totally can. In terms of enhancements, the base styles have been updated to a modern Saas module system, and this was basically an obstacle to the Gutenberg project overall, migrating to the dart SaaS format in the future. So I love this kind of proactive unblocking that’s happening, kind of moving away from some of the legacy import statements. Great work by Aki per usual, but one of those just kind of foundational pieces to work on and make sure we have up to date just to unblock future things.

This one, I actually was involved in this one previously, but a revert was done for how the edit site link works. When you’re viewing your site, you’re using a block theme and you see edit site. There’s been a debate; does it open the current template you’re looking at or does it open just the site editor and the homepage? And this has gone back and forth since the dawn of time. So this is a revert that previously had it update. Basically whenever you hit edit site, it would bring you just to the general homepage of your site editor. Now it brings you to the current template. We got a bunch of feedback and this is where I love the WordPress project and love the feedback that we get straight from folks. Whenever that was implemented in 6.8, people came back and said, hang on, what’s going on? This is different. This isn’t interrupting my workflow. This now takes three clicks for me to get to the current template I was looking at rather than bringing me there. I see the argument on both sides. There’s definitely. I think Rich shared a great video of himself with. If you set a homepage or set a page as your homepage, what the experience of that looks like and how it can be confusing for end users, I have a feeling this is something that will continue to be a conversation and something that hopefully in the overarching issue there was a discussion around having more granularity. So maybe edit site has a little drop down menu, kind of like an ad post thing where you can see it says like edit template, edit homepage, edit, whatever. Like having edit styles, like having something with more granularity. We’ll see where that ends up. But this is. As of now, this experience has changed. Thanks to feedback. Do you want to jump into…

Birgit Pauli-Haack: The only thing that I wanted to say about that was that there are actually at least one plugin out there who actually tried to implement a dropdown with and kind of. So you can check it out. I’m going to do some research and share it in the show notes. Yeah, so and with the block library we had a few changes that I wanted to talk about. One is that the search settings. So for the search block there were a lot of settings in the toolbar, and it seems that most end users are kind of now trained to open up the sidebar for the settings. So developers have now moved some of the settings into the inspector to the right hand side in the sidebar so they’re all together. I think that’s just for. It’s also for consistency of the interface. So I like that. And then there were. For the first and the pre-formatted blocks, there were transformers missing and they were added. So people do not have to copy paste things and not delete a block and then add another block and copy paste the content and they just can transform them from paragraph to verse and back and forth. Yeah. And now Anne, we’re coming to a topic that you know a lot about. One is developers are enhancing content only editing experience. So what does that mean?

Anne McCarthy: Yeah, this is. The names on this are rough. So right now there’s this idea of write mode. We need a new name because basically what it does and this is something to zoom back out. Whenever I ran the outreach program, one of the things we repeatedly found is that dropping people straight into the site editor is pretty overwhelming. There’s a lot of options open, there’s a lot of tools open and it’s like, how do we add a simplified layer on top? That’s what write mode is intending to do.

So you can imagine a way to toggle between a simplified site editing version and then like boom, all the tools you want and having a way to switch in between those modes as you you’d like. The underpinning technology used for that is content only. And what that does is it basically allows you to only edit the content. So it’s a lot of fancy names. But this is. I’m trying to like set the scene. And so there are some updates I think across both releases we’re covering that improves different blocks and how they work with this option because out of the box, not every block works with it and something has to be done manually to basically add support for it. Now there’s questions around specific blocks, like how much should be exposed, what should it look like, what should the experience be? I actually did some user testing at work campus last year with random people and recorded them going through this. And so there’s a lot to be figured out there. At the core it’s making way and taking steps towards a simplified site editing experience that folks can toggle on. You can imagine the first time in the site editor, maybe you have that experience and then if you run into something where you want to do more, you can have a quick way to just switch into like show me all the tools. Kind of like the idea of when you’re editing a presentation and like a slide slides for something and you want to go into the overall view of everything, you can do that. Otherwise you can just add text, move things around and have some like simplified experience. So that’s the context for that. This covers the details block, the code block, the read more block, the post block. There’s a lot of blocks that were changed for this and we’ll continue to see this. I think over the future releases we’ll see iteration on this area. So stay tuned.

Birgit Pauli-Haack: Awesome, awesome.

Anne McCarthy: Does that help explain it?

Birgit Pauli-Haack: Definitely helped me, yeah. And it also helped me to understand why there all of a sudden were different things in the sidebar. Because the different icons on there, they’re just identifying the places where you can edit the content but not, you’re not Having anything else in there. There are no display options or settings or something like that. So now I understand that. I also understand why plugin authors or agency for instance, are quite excited about that because they can curate the interface for their clients and kind of keep them out of the design and out of the have some more guardrails for them. And I think that’s because you can implement that through a plugin as well. So yeah, you can tap into the block JSON and say put this into content only mode because it’s not a default thing. So yeah, I like it.

The two components had some changes. One is that the color. The color picker now has visual cues when you copy value. That’s definitely great. The interaction there. So you don’t have to wonder, did I copy it or did I not copy it? And then the snack bar, that’s the term that developers use for the notifications that are on bottom on your screen that come up when you do something. So if you have to, if you save your post, you get the little note. Click here to view it. And now this is also now available to open the links in new tabs, especially when you are a plugin author for your whatever plugin you do. You can also use the snack arx component. And then now you have the options to open links in a new tab, which is controversial, but yeah, just having the option in the components should be fine. It’s controversial because you take over the freedom of the user to decide if they want it into a new tab or new window or just right there because all of a sudden they don’t have the choice anymore.

Anne McCarthy: I think that I’m curious how that bland with. With folks. Yeah, that one I was surprised to see a bit.

Birgit Pauli-Haack: But yeah, yeah, I think that was it for Gutenberg 20.9.

Gutenberg 21.0

Gutenberg 21 was just released this week. And do you want to take that next step there?

Enhancements

Anne McCarthy: Yeah, let’s dive into it. One of the main enhancements that I love to see is a refactor, the settings panel to use Tools panel. So across a bunch of different blocks to zoom back out, there’s different ways in which we display settings. And that can cause those little inconsistencies really add up, especially when you’re looking, you’re trying to do something in one block and you do something in a different one and it looks slightly different or appears slightly differently. So the more we can have really smart, intuitive defaults where for any block, whenever you want to change something in one block, it’s the same in another the better and especially just experience wise and using the latest components. It’s a really important thing to continue to iterate on. And so across a number of different blocks the Tools panel was implemented and there’s a lot of benefits. I don’t know if you want to talk about the benefits of it just because it’d be good to hear your perspective on this too.

Birgit Pauli-Haack: Yeah, I would because I was trying to figure out what is actually that the user gets out of it and. Or the developers that use the blocks or extend those blocks. You get more control for the display. It’s every time the same thing. That’s what you mentioned. But it’s also an easier mechanism for injecting additional settings into an existing group. I’m not quite sure if that’s exposed for the third party to. For the extensibility, but that will definitely enable it. And then there is a visual parity between the styles that are already in the Tools panel and those who don’t. Yeah. So it’s really. It’s all the comments block. It’s. There’s a tracking issue 67813 where you can kind of see all the progress on this project and also the list of the blocks that are handled with that. Yeah.

So another change is that the separator has now. Well, we talked about earlier. Well in the last episode about that. That the separator now has an additional. You can have now a div instead of an HR so you can style it more. And with this release that HTML element option is much more visible. It’s now kind of moved up in the advanced section and it’s not hidden anymore. So you can just toggle that and can change the options there. I really like that there was another block about that. I think the same thing happens with a button block. They also move the HTML element section up so you can change through between the element of a button or the element of a link, an anchor. So that’s why I’m kind of hesitating about moving forward there. In the video Block has now an additional option to set a track as default and the track is actually the caption track. So you can select the default language there. And that’s really helpful for anybody who has videos on the website and is not an English speaker or doesn’t have the audience of any English speaker. So they could set the default but they had to really specifically do it. And if there’s not one uploaded, it was a little janky, so buggy for things. So I think that was it on the enhancements.

Bug Fixes

Anne McCarthy: Yeah. Now we can jump into bug fixes if you want to. I can start with that.

Birgit Pauli-Haack: Yeah, yeah.

Anne McCarthy: One of the first bug fixes which I do want to call out is from, I’m pretty sure a new contributor. Yep, first-time contributor, which is always really cool to see. Super awesome. McCool I think is the name. Apologies if I’m mispronouncing that, but this work basically fixed an issue where the pull quotes site element couldn’t be styled or overridden by theme JSON due to basically conflicting CSS specificity. And so this is a nice win for blocking developers because they can now customize citation styles as they’d like. And it was some nice collaboration with Aki again to basically resolve this by reducing the specificity of the class selector so that theme JSON styles can actually work. I love when that actually works out. So yeah, keep the feedback coming, especially block theme authors around limitations you run into like this. It’s always really helpful to start to continue to fix these sorts of things. So I was excited to see that bug fix there.

Birgit Pauli-Haack: Definitely. It’s also, if you want to read up about it and see how such a collaboration between veteran contributors and new contributors actually happens. It’s a great example where a lot of people have some opinions, but then you move forward and you get a nice PR merged that helps a lot of people. So it’s definitely a great way to contribute. I don’t think I see any other bug fixes that I would want to talk about.

Accessibility

So there’s one on the component that’s more on accessibility thing, that the toolbar now adjusts the colors for dark mode support. And that’s really cool because now you can also have the toolbar on the block in dark mode. For a lot of people that are around in dark mode, it’s really cool.

Documentation

And then there is one documentation issue I need to look at that, but it is that the block schema now also has a roll field and the role field is important for.

Anne McCarthy: It looks like it was added before in 6.7. Like the roll field was stabilized but it wasn’t exposed in the schema. Which, you know, might be good to follow up on.

Birgit Pauli-Haack: Yeah, yeah, it happens with 6.7 it was. Yeah. And that’s for the content mode.

Anne McCarthy: Yeah, that’s right.

Birgit Pauli-Haack: Yeah. So that’s it. I think we’re through that. We have Gutenberg 20.9 and 21 and we are at the last bit of our show.

What’s in Active Development or Released

And that is what’s in active development or discussed. And with a few more talks on flagship WordCamps, the interactivity becomes more and more popular, and the team worked in the last few months with the WordPress team together to implement additional features, and those are now with the start of contributing again backported to the Gutenberg repo. There are many issues and you can follow along on the tracking issue. Backport WooCommerce Interactivity API improvements. That’s tracking issue 70372. It’s like a phone number. Yeah, there are actually quite a few issues in there. I’m really excited about that because there is a new feature that’s the interactivity router that lets you organize your pages better or the links between blocks. And also what was the other one?

Anne McCarthy: I know there’s some client side navigation work that’s been done too, which I’m really excited about. I’ve been using that in the Block Museum for a while now and it just makes it super quick to switch between pages and to have it be pulled in and hopefully stabilize soon. It’d be really, really neat to have as an option. I have loved having it on the Block Museum.

Birgit Pauli-Haack: So yeah, yeah, that was also something, that was an experiment I think in Gutenberg for the, for the query block. Yeah, yes, yes. So, okay, so now we’re kind of moving forward on that and I’m quite excited about that, and I hope you dear listeners are too. All right, is there anything else that you wanted to talk about on the show?

Anne McCarthy: But nothing on my mind. I mean I would love this is a selfish ask, but as I get back into the project, mainly coming back from sabbatical, I would love to know what sort of hallway hangouts or conversations folks want to have. I’m really keen on making sure we continue to have a lot of those community wide conversations, not just at WordCamps because not everyone can join those. And like that’s some inspiration I took from the COVID times is to continue the conversation. So if folks have ideas or suggestions, I’m Nzazu and WordPress at org Slack, my site Snowmad Blog, you can contact me there. I’m not on X or any of the social media so you cannot find me. But yeah, I, I just am. I’m very curious to see what’s on people’s minds, what feels like hot topics to discuss and what feels important to hear more about and how we can facilitate sharing that knowledge and inviting more folks into the work. That’s the only other thing I’d love to add.

Birgit Pauli-Haack: Awesome. Awesome. Yes. And as always, the show notes will be published on GutenbergTimes.com/podcast this is episode 118. And if you have questions or suggestions or news you want us to include, send them to [email protected] that’s [email protected] and this is the end of this show.

Thank you all for listening, and thank you so much for taking the time out of your busy, busy schedule to be on the show with me. And thank you all for listening. And until the next time, bye.

Anne McCarthy: Bye.

June 14, 2025  09:50:37

Hi there,

WordCamp Europe is over. I had a blast and also caught a bug.🤧

The next flagship WordCamp is just around the corner: WordCamp US will take place August 26 – 29 with Contributor Day, Showcase Day and a two-day conference. The call for speakers is open, notice the deadline June 20 for your submission. Also open are the call for sponsors and for volunteers.

I am so excited as I will finally connect with my WordPress friends from the US again. It took me three years to get back to WordCamp US after our move to Germany.

With Automattic getting back to contributions, the team caught up on Gutenberg release posts and there is a new Gutenberg version available. I also have a few notes and links collected about the new AI team and their work.

I hope to see you at WordCamp US, too

Yours, 💕
Birgit

Developing Gutenberg and WordPress

In the latest edition of What’s New for Developers (June 2025), Justin Tadlock collected lots of information relevant for plugin authors, themes builders and agency freelance developers from Core, Gutenberg, and Playground. It’s the best post to catch up on the last to month of updates in WordPress.


Carlos Bravo release Gutenberg 21.0. In his release post What’s new in Gutenberg 21.0? he highlighted.


Jessica Lyschik used the time during Contributor Day at WordCamp Europe to get a head start on catching up with the release posts for earlier Gutenberg releases.


🎙 The latest episode Gutenberg Changelog 118 – WordCamp Europe, WordPress New AI Team, the Pride Photo Drive, Gutenberg 20.9 and 21.0 Anne McCarthy is back from sabbatical and we talked about WordCamp Europe, the new WordPress AI team, the Pride Photo Drive, and Gutenberg 20.9 and 21.0 .

If you are listing via Spotify, please leave a comment. If you listen via other podcast apps, please leave a review. It’ll help with the distribution.

New WordPress AI Team

Just ahead of WordCamp Europe, Mary Hubbard announce the new AI team, identifying James LePage and Felix Arnzt as team reps. James LePage followed up with his post Welcome to the Core AI Team Blog.

The community came together for the Introducing the AI Team Hallway Hangout and Anne McCarthy published the recap and the recording.

What I learned:

  • The AI Team is laying the groundwork to bring AI into WordPress, and the timing couldn’t be better. With AI moving at lightning speed, it’s important for WordPress to stay in the mix.
  • For now, the AI Team isn’t adding big AI tools directly into WordPress. Instead, they’re working on simple plugins that help connect WordPress to different AI services. Maybe someday AI will be built right into the core, but that’s not on the table yet.
  • WordPress leaders are fully behind the AI Team, recognizing that AI is the future and wanting to keep WordPress front and center as things evolve.

The current initiatives / plugins have been mentioned in early editions of the newsletter:

  • AI Services Plugin by Felix Arnzt provides an abstraction layer for multiple AI providers, enabling plugin authors to use a unified API for AI interactions.
  • MCP for WordPress plugin by Pascal Birchler implements Model Context Protocol (MCP) servers in WordPress, enabling advanced AI integrations via command-line or plugins. You can learn more about reading Pascal Bichler’s post Enabling AI-Powered WordPress Development with WP-CLI and the Model Context Protocol (MCP)
  • WP-Feature-API plugin by Automattic structures WordPress features for better AI interaction, offering a standardized way to register resources for AI use. It’s a system for exposing server and client-side functionality in WordPress for use in LLMs and agentic systems

The WordPress AI Team chats in the WPSlack #core-ai channel and holds meetings every other Thursday at 16:00 UTC. You can read the summary of this week’s meeting on the Make AI blog.


In his video The WordPress AI fightback begins! Jamie Marsland interviews James LePage about AI in WordPress and the new team.

WordCamp Europe

It was a fantastic WordCamp at a great venue. I enjoyed the many, many conversations with attendees, sponsors, contributors and fellow speakers. The organizing team has done a fabulous job, in all areas, and the volunteers were awesome. The speaker team was first-class in their support. As a first time WCEU speaker, I felt very well cared for. I loved the bright and brilliant designs at the venue as well as on the website and on screens.

The most astonishing work was done by the AV team, who uploaded all videos to WordPress TV by the end of the WordCamp. In contrast to previous WordCamps, all workshops were also recorded, and you can watch them at your own speed.

As always, I share my opinionated list of favorites:

During Fire side Chat with Mary Hubbard and Matt Mullenweg they discussed, among other things, the WordPress Campus Connect project that’s being rolled out as an official program. Hubbard also announced the start of a pilot project for student internships with the University of Pisa, encompassing 5000 students to contribute 150 hours and received six college credits.

Mary Hubbard and Matt Mullenweg at WordCamp Europe 2025. Photo by Sathwik Prabhu

Another great talk was by Noel Tock WordPress without Borders – The Fight for Digital Freedom. Tock not only shared from his charity work in Ukraine but also about other charities who help with finding kids, providing a roof over the head of people who lost their homes, and trying to alleviate other hardships. Tock made us realize the true impact of WordPress has to all the agencies who use it for their web site to fundraise and connect with communities. The pictures from Ukraine are heart-wrenching.

The Block related talks:

If you are interested in working with Playground, two workshops might help you get started depending on your needs

This is only a small list, and there are many great talks about all WordPress topics, for content creators, developers, entrepreneurs, and educators. Check them out.

A few attendees published recap posts:

Plugins, Themes, and Tools for #nocode site builders and owners


Carlo Daniele
, Kinsta, dug deeper in the term WordPress Hybrid Themes. He covered two approaches. The first is how hybrid themes bridge the gap between Classic and Block Themes by supporting modern block features. They maintain compatibility with traditional plugins and templates. The second highlights ways developers can enhance hybrid themes with global styles. They can use block patterns and template parts for flexible site building.


In her post, From Page Builders to Blocks, Johanne Courtright, founder of Groundworx, explains why it’s time to move from page builders to Gutenberg, the built-in block editor. She points out its built-in stability, better performance, and easier design control. Courtright tackles common worries, then suggests starting small—like switching your blog first, updating your theme, and helping users learn—showing that Gutenberg’s block system is the way forward for WordPress.


In here post Design Once, Build Everywhere:The Lego Principle for Page Builders, Tammie Lister reflects on the fragmented world of page builders, arguing for a “Lego principle” where design components are created once and used everywhere. She suggests that adopting shared foundations and modular systems—much like Lego’s approach—would unlock creativity, improve portability, and better meet modern demands. Ultimately, Lister envisions a future where page builders are collaborative, flexible, and empower users to build without barriers.

Theme Development for Full Site Editing and Blocks

Fabian Kägy, director of Editorial Engineering, introduced Fueled’s open-source Figma to WordPress plugin, which exports design tokens from Figma directly into a WordPress theme.json file, reducing a 10–15 hour manual process to about an hour and enabling rapid, consistent theme development without extra frameworks or licenses

Screenshot of the Figma to WordPress plugin

Jeremy Holcombe at Kinsta, also researched How to convert a Figma project to WordPress and walks you through three methods. He covers using the Figma plugin by Yotako for automation, manually rebuilding designs in WordPress for precision, and hiring professional services, highlighting the pros, cons, and best use cases for each approach..


Mike McAlister introduced the Ollie Theme Academy video course a free and in-depth video course teaching everything from the basics to advanced techniques of WordPress block theme development. The course covers full site editing, global styles, patterns, and aims to help anyone modernize their WordPress workflow for 2025 and beyond.

10 days later, McAlister followed up with the announcement of a Block Development course. This is a new resource to help developers master building custom WordPress blocks. It provides practical, hands-on video lessons focused on modern block development. This approach aims to make it easier for anyone to create powerful, custom blocks for their WordPress sites.

Screenshot of the landing page for the Ollie Block Academy, courtesy of Mike McAlister

Bernhard Kau explored Implementing a custom block style variation using only JSON files in WordPress block themes. He explains how to make a perfectly round button by defining a new style in a JSON file. This approach bypasses the need for PHP or JavaScript. Despite some limitations, this approach allows for easy customization. There is incomplete support for certain properties. Nevertheless, it enables consistent design without writing traditional code.

“Keeping up with Gutenberg – Index 2025”
A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. The previous years are also available: 2020 | 2021 | 2022 | 2023 | 2024

Building Blocks and Tools for the Block editor


Alfredo Navas, developer at WebDevStudios, explored the MCP server plugin. He shared his findings and highlighted how it enables external tools or AI agents to interact with WordPress. These interactions are useful for tasks like creating posts or debugging. He notes its usefulness for automating workflows, its extensibility, and that it’s still under active development.


Eric Karkovack explains how to add custom style variations to WordPress blocks using a custom plugin. He guides you through creating custom style variations for WordPress blocks. He details building a plugin, using the ‎`register_block_style()` function, and applying unique styles—like a “Unicorn” button—via PHP or JSON. This way you empower your users to personalize block designs and enhance site consistency.


I mentioned DeepWiki before, in WE #329, and now Jonathan Bossenger invites you in you YouTube video to learn more about DeepWiki | AI powered documentation you can talk to.

I asked DeepWiki the following questions, click on the links to get to the answers.


Need a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.

Now also available via WordPress Playground. There is no need for a test site locally or on a server. Have you been using it? Email me with your experience

GitHub all releases

Questions? Suggestions? Ideas?
Don’t hesitate to send them via email or
send me a message on WordPress Slack or Twitter @bph.


For questions to be answered on the Gutenberg Changelog,
send them to [email protected]


Featured Image: WordCamp Europe 2025 photo by Kostas Fryganiotis, found on Flickr


Don’t want to miss the next Weekend Edition?

We hate spam, too, and won’t give your email address to anyone
except Mailchimp to send out our Weekend Edition

Thanks for subscribing.

June 13, 2025  14:45:06

Let’s face it. Social media is starting to feel like a rigged game. Users are burnt out, brands are boxed in, and algorithms act more like black boxes than helpful curators.

Enter the promise of decentralized social networks: platforms that ditch the central command center and run on independently managed servers. They promise a fairer, freer internet – but pulling it off isn’t easy.

And the numbers tell an interesting story.

The Great Migration: What’s Really Driving Growth?

Bluesky has been absolutely exploding lately, adding millions of users in just the past few months. Meanwhile, Mastodon has been puttering along with steady but modest growth for years, never quite hitting that mainstream breakout moment.

But here’s the question: are people flocking to Bluesky because they genuinely want decentralization, or because they just want somewhere that ain’t X?

Most folks don’t wake up thinking “I need a decentralized social network.” They wake up frustrated that their posts aren’t reaching their followers, or worried their account might vanish overnight, or just plain tired of dealing with whatever chaos is happening on their current platform.

Bluesky offers an escape hatch that feels familiar. Mastodon? Well, that’s where you go when you really, truly care about the principles behind decentralization.

Is Bluesky Actually Decentralized?

Here’s where things get interesting. Bluesky runs on the AT Protocol, which is designed for decentralization. But right now? There’s essentially one big server doing all the heavy lifting.

It’s like having a decentralized highway system with only one on-ramp.

Bluesky promises you can eventually take your data and followers elsewhere if things go south. That’s a big improvement over traditional platforms. But as of today, “elsewhere” doesn’t really exist yet. You’re still trusting one company with your digital life – they just promise to be nicer about it.

That doesn’t make Bluesky worthless. The data portability and algorithmic choice features are genuinely useful. And the fact that you can use your own domain as your username? That’s actually pretty brilliant.

But calling it fully decentralized right now is like calling a blueprint a building.

How True Decentralization Works: The Fediverse

Real decentralization looks more like Mastodon and the fediverse – a sprawling network of independently run servers that all speak the same digital language thanks to open protocols.

It’s a bit like email. Your Gmail can talk to someone’s Outlook, Yahoo, or that one person still clinging to AOL, because they all follow the same basic rules.

In the fediverse, you don’t sign up with one big platform. You choose an instance to call home. Each comes with its own vibe, community guidelines, and moderation style. Some are havens for coders, others filled with artists, activists, or people very, very into vintage tractors.

This setup hands users real control over moderation and community culture. No black-box algorithm deciding who sees what. No getting locked into a single app. And if your current server starts feeling off? You can pack up your followers and posts and move to another instance.

The fediverse includes:

  • Mastodon for microblogging (basically Twitter, but with more thoughtful conversations)
  • Pixelfed for photo sharing (Instagram without the influencer economy)
  • PeerTube for video hosting (YouTube minus the surveillance capitalism)

But here’s the catch. All this freedom comes with complexity that makes most people’s heads spin.

The Identity Problem Nobody Talks About

The biggest challenge with decentralized social media isn’t technical – it’s practical. How do you maintain a consistent identity when you’re scattered across multiple platforms, instances, and protocols?

That dream handle you grabbed on mastodon.social? Already taken on hachyderm.io. Now you’re stuck with @yourname2024 or something equally clunky. Your bio works perfectly on Mastodon’s 500-character limit but gets chopped off everywhere else. Profile links follow no consistent format.

The result? Your digital presence looks different everywhere, making it harder for people to find and recognize you across platforms.

This is where domain-based usernames start making sense. Whether it’s Bluesky’s @yourname.yourdomain.com handles or setting up your own domain for the fediverse, owning your name means owning your identity.

And that’s not just about vanity – it’s about being findable when you inevitably need to move platforms again.

Making Yourself Findable in a Fragmented World

Here’s something that might sound contradictory: one way to navigate decentralized social media is through a centralized identity service.

I know, I know. Using Gravatar to manage your presence across decentralized platforms sounds backwards. Some folks specifically chose Mastodon to escape centralized identity systems. That tension is real, and worth acknowledging.

But here’s the thing – when you’re bouncing between Mastodon, Bluesky, PeerTube, and whatever comes next, consistency becomes valuable. Not for data collection or advertising, but for basic human recognition.

Unlike your all-in-one identity on places like Facebook or Instagram, the decentralized world hands you a juggling act. Different apps, different instances, different handles. Not ideal.

When someone sees @yourname.link posting on Bluesky, then spots the same name and face commenting on a GitHub issue or WordPress blog, that consistency builds trust and recognition. It’s the difference between being a random username and being a recognizable person.

Gravatar handles this by creating a portable identity hub that follows you around like a digital business card. Set it up once, and it appears automatically on thousands of sites whenever you use your email to register or comment.

You choose what to share. You update it when you want. No algorithm meddles with your identity, and your data stays yours.

For Bluesky specifically, Gravatar supports custom domain handles, so you can claim @yourname.bio without the technical hassle of setting up your own server.

The Real Value: Being Found When You Move

The benefit ain’t about convenience – it’s about portability. When you inevitably need to jump platforms (and you will), your followers can find you because your identity remains consistent.

Your Gravatar profile becomes a lighthouse, pointing people to wherever you’ve landed next. Mastodon handle? Listed there. PeerTube channel? Yep. New platform that launches next year? Add it to the list.

This matters more in a decentralized world where there’s no central directory, no “suggested users” algorithm to help people discover you on a new platform. You’re responsible for being findable.

What’s Next for Decentralized Social Media

The momentum is real, but the direction isn’t clear yet. Will Bluesky eventually become truly decentralized, or will it remain a benevolent centralized platform with decentralized features? Will Mastodon find its mainstream moment, or stay the principled-but-niche option?

And will regular folks – not just tech enthusiasts – actually want the complexity that comes with true decentralization?

The answer probably depends on whether platforms can solve the basic human problems (finding your people, keeping your identity, avoiding harassment) better than what we have now.

What we know for sure is that the old model is cracking. People want more control, more transparency, and more choice in how they connect online. Whether that comes through truly decentralized networks or just better-behaved centralized ones remains to be seen.

But either way, making yourself consistently findable across this changing landscape? That’s just good sense.

Navigating the challenges of cross-platform identity mana

So, step into the future.

Take two minutes (seriously, that’s all it takes) to set up your free Gravatar profile, and take charge of your identity across the decentralized web.

June 12, 2025  21:10:25

Are you creating code with AI tools like Cursor, Loveable, or Claude? We just made it way easier.

We’ve created a single page of custom instructions that developers can copy-paste into any LLM or AI tool to instantly understand how Gravatar works. No more explaining our API from scratch or watching your AI assistant guess how profile data flows.

What’s In The Box?

Our custom instructions give AI tools everything they need to integrate with Gravatar properly:

  • Complete API understanding for avatars and profiles
  • Real-world code examples
  • Privacy and data handling best practices (ex. SHA256, not MD5)
  • Mobile SDK guidance for iOS and Android

Think of it as the ultimate cheat sheet for building with Gravatar.

Perfect For Developers Who Vibe

Whether you’re prototyping with v0, building with ChatGPT, or coding alongside any AI assistant, these instructions ensure your AI actually gets what Gravatar does.

Your AI will understand profile-as-a-service, know our REST API endpoints, and suggest the right integration approach for your project.

Copy, Paste, Build

We’ve done the heavy lifting.

The instructions work with any LLM that accepts custom prompts. Paste them in, start your project, and watch your AI assistant become a Gravatar integration expert.

Grab the instructions here →

June 12, 2025  20:59:04

So, you’ve decided it’s time for a headshot that doesn’t look like it was taken at 11 pm under your kitchen light. Sensible move. But then – bam! You check out the prices and suddenly consider just cropping yourself out of a group photo from 2017.

You’re not overreacting.

The professional route is painfully pricey. As for the DIY route, one minute you’re adjusting lighting, the next you’re wondering why you suddenly resemble a startled meerkat.

And yet, the stakes are high. Research shows people form an impression of you from your photo in 1/10th of a second. That’s faster than your thumb can scroll.

Like it or not, your headshot is your always-on personal brand billboard, beaming across LinkedIn, Zoom, your email signature… basically, everywhere.

But the truth is, you don’t need a Hollywood budget or a Nikon the size of a shoebox to nail it.

With just your smartphone, a few clever tricks, and a sprinkle of intention, you can snap a headshot that says “professional,” not “panicked.”

Below you’ll find 10 practical strategies to help you:

  • Nail lighting without a studio.
  • Pose without looking like you’re mid-blink.
  • Edit like a pro.

This guide will take you from “I guess this will do?” to a polished, professional headshot that opens doors, lands clients, or gets you into that next big role.

Let’s get snapping!

1. Choose your equipment

Good news: The best camera you own is probably already in your pocket. Today’s smartphones are absolute powerhouses, easily capable of snapping headshots that look straight out of a studio… if you know how to wield them.

Here’s what you’ll need:

  • A recent phone with at least a 12MP main camera.
  • Portrait mode (hello, dreamy background blur).
  • A grid display to keep your framing sharp.
  • Focus lock to make sure your eyes stay crisp.
  • Self-timer or voice command so you’re not sprinting back and forth between shots.
Phone settings for professional headshot tips

Take note: As tempting as it is to use the front-facing camera, the back camera’s where the magic happens. It’s higher quality, gives you more control, and won’t leave you with that slightly fuzzy “FaceTime screenshot” look.

To get it right:

  • Set your phone 3-4 feet away, level with your eyes.
  • Balance it on a stack of books, boxes – whatever’s sturdy.
  • Or better yet, grab an adjustable phone tripod (they’re less than $50 and worth every penny).

✨ Pro tip: Some phones flip selfies by default, turning text (and your face) backward. If you insist on the front camera, dig into your settings and switch off image mirroring before you start. That way, your photo looks polished and professional everywhere it shows up.

2. Find your ideal lighting

Lighting. It’s the make-or-break factor; the difference between “Oh wow, did you get that done professionally?” and “Cute… but why does it look like you’re hiding in a cave?”

Don’t worry. Your best lighting? Totally free. Natural light is your secret weapon.

Start by parking yourself near a big window – bonus points if it faces away from the sun, that way light stays soft and steady, skipping those harsh, unflattering shadows. Aim to stand about 3–5 feet away so that the gentle glow wraps your face like a flattering Instagram filter.

And yes, timing totally matters:

  • Early morning (7–9 AM) means crisp, clean, chef’s-kiss light 🤌☀.
  • Golden hour (1–2 hours before sunset): Dreamy, warm, universally flattering.
  • Midday? Big no, no. Shadows where you don’t want them.

And don’t just snap and hope for the best. Play around. Shuffle a little left or right of the window. Step closer, then further away. Test different angles to find your best side.

✨ Pro tip: If you’re wearing spectacles, tilt your chin slightly down, and if you’re using extra lights, angle them upward to give you the no glare, natural, polished look you want.

Go on, work that window.

3. Pick your background

Your background is the unsung hero of your headshot. Typically, you’ll want a backdrop so subtle, no one even notices it. All eyes should be on you, not whatever’s lurking behind you.

The easiest win is to stick to plain, neutral tones:

  • Light gray = sleek, modern vibes.
  • Off-white = timeless, classic feel.
  • Soft blue = just enough warmth without stealing the spotlight.

These shades quietly do their job, keeping attention exactly where it belongs – on your face. And no, you don’t need a fancy studio to pull this off. Try one of these simple DIY setups:

  • A plain, unadorned wall (yes, really).
  • A wrinkle-free bedsheet, hung nicely and smoothly.
  • A big sheet of foam board from the craft store.

✨ Pro tip: Do not stand right up against the background. Step forward 3-4 feet to:
✅ Add natural depth
✅ Dodge harsh shadows
✅ Get a subtle blur in portrait mode

A few things to avoid: Bright colors that clash with your skin tone. Busy patterns screaming for attention. Random clutter (bookshelves, kitchen counter, laundry pile). Remember, you’re the star. Everything else needs to fade into the background. And if all else fails, you can always swap out the backdrop later when you edit your pic.

There you have it: Pro-looking backdrop, no studio required.

4. Dress for success

Let’s talk wardrobe. Color psychology isn’t just fluff, it shapes how people see you. In corporate settings, blues and grays quietly say “trustworthy” and “competent.” Whereas in creative industries, brighter colors scream “innovative.” Rule of thumb: Dress for your industry and purpose.

Your outfit also needs to work with your background:

  • Dark clothes + light backdrop = high contrast (tricky for cameras).
  • Similar tones = coordinated, polished look.
  • Solid colors > busy prints (trust us).

Necklines matter too:

  • Round face? V-neck = flattering length.
  • Square face? A scoop or rounded neckline softens angles.
  • Long face? Boat or crew neck balances things.
  • Heart-shaped? Try square or cowl necklines.

Heads-up: The camera spots everything – gaps, seams, button strain. If it doesn’t fit perfectly, fix it or swap it.

Gravatar profile example for headshot tips]

And once you’ve nailed that shot? Upload it to Gravatar. It syncs your headshot across platforms like WordPress, GitHub, and Slack – no manual updates needed.

In just 5 minutes, you can create your free profile, upload your pic, and let your digital presence do the talking.

5. Apply makeup strategically

Here’s the thing about cameras: They’re sneaky little flatteners. What looks defined and dimensional in real life can end up weirdly washed out or featureless in a photo. That’s why a little strategic makeup can make a big difference for headshots.

If makeup’s already in your routine, dial it up a notch – think a touch more definition around the eyes and cheekbones than your everyday look. This helps counteract the camera’s flattening effect and keeps your face looking sculpted and alive in the final shot.

A few things to skip before your shoot:

  • Products with SPF (they can throw off a ghostly white cast on camera).
  • Silica-heavy setting powders (you don’t want that chalky “flashback” effect).
  • Super shimmery products (they tend to photograph as oily rather than glowy).

For men – or anyone who doesn’t usually reach for makeup – consider a few subtle tweaks:

  • A quick dusting of translucent powder to knock back shine on the forehead and nose.
  • A tinted moisturizer to even out skin tone (promise, it won’t look like makeup).
  • And don’t underestimate the power of a precise beard trim – cameras love to highlight asymmetry.

But here’s the best bit: You don’t need to chase perfection on the day. A good photo editor can easily tackle things like redness, uneven skin tone, or tiny blemishes after the fact.

6. Use confident body language

Body language matters more than you think in a headshot. Research shows small posture tweaks can boost how competent and approachable you seem. Plus, striking confident poses doesn’t just influence others, it literally boosts your confidence while lowering stress.

Try the “turtle method.”

  • Gently push your chin forward and slightly down.
  • It sharpens your jawline.
  • Separates your head from your shoulders.
  • Instantly adds flattering definition.

Skip perfect symmetry – it reads stiff. Instead:

  • Tilt your head a little (around 15°).
  • Angle your shoulders slightly.
  • Keep your spine tall, but relaxed.

Before the shutter clicks, use this breathing hack to ditch tension:

  • Inhale through your nose for 4 counts.
  • Hold briefly.
  • Exhale through your mouth for 6 counts.
  • On the last exhale, fully relax your face.

End result: Less “awkward passport photo,” more polished, confident professional.

7. Find your facial expressions

Here’s the thing: Everyone’s got signature expressions that photograph well, but you probably won’t stumble upon them on first try. The secret is to indulge in a little trial and error.

Block out some time, grab your phone, and take test shots from different angles. What feels natural in the mirror doesn’t always translate on camera. You’ll need to push past your usual go-to faces and experiment.

Here’s what to try:

  • The “squinch” – a subtle narrowing of the lower eyelids that says “I’ve got this” without veering into “can’t see without my glasses.”
  • Eyebrows: Relaxed but slightly lifted – adds a hint of warmth and approachability.
  • The 20% smile – not a full grin, not stone-faced: Just enough curve to look thoughtful and composed.

Take note: Each industry carries its own preferences.

  • Legal and finance? Go for serious and authoritative.
  • Tech? Relaxed, approachable smiles are fair game.
  • Creative fields? Feel free to let your personality shine through (quirks welcome).

And if you’ve ever sworn you’re “just not photogenic”? Join the club. The trick is capturing enough variations to catch those magic in-between moments. Use your phone’s burst mode (hold that shutter down) to snap 10–15 shots at once. Those sneaky, subtle shifts mid-blink or mid-laugh are often the gold you’d never have deliberately posed for.

8. Tweak those phone camera settings

Your smartphone camera is smarter than you think. With a few tweaks, you can take your headshot from “meh” to “wow.” Here’s how:

  • Pick your mode: Portrait for background blur, Square for social profiles, Standard for flexibility.
  • Nail white balance: Keeps skin tones looking natural (not Smurf-like).
    • Find it under “pro” or “advanced” modes.
    • Outdoors? Auto’s fine.
    • Indoors? Pick a preset to match your lighting.
    • Still off? Manually adjust until you’re glowing (in a good way).
  • Switch on gridlines:
  1. Apply the rule of thirds and align the eyes along the top horizontal line.
  2. Center your face at a grid intersection.
  3. Voilà: Pro-level framing.
Grid framing for Gravatar headshot tips
  • Use HDR (High Dynamic Range): Helps balance light when:
    • The background’s brighter than your face.
    • You’re dealing with tricky lighting.
  • Choose your aspect ratio:
    • 4:3 = classic headshot.
    • 1:1 = perfect for social profiles.

With these settings dialled in, you’ll be cranking out headshots that punch well above their weight.

9. Time for a quick polish: Edit that headshot

Even the best DIY headshots can use a little finesse. But don’t worry, you don’t need Photoshop or a degree in digital media. A few smart tweaks with free (or cheap) apps can level up your photo without draining your wallet:

  • Lightroom Mobile (the free version has all the essentials).
  • Snapseed (totally free, with pro-level tools).
  • VSCO (great for natural, flattering presets).
  • Your phone’s built-in editor (seriously underrated).

Here’s where to focus your edits:

Cropping

  • Frame your eyes in the top third of the shot (see above).
  • Snip out any background distractions.
  • Keep a comfy balance around your head and shoulders.

Brightness & contrast

  • Bump exposure up 10–15% for a fresher, more open look.
  • Add a dash of contrast (+5 to +10) to sharpen features.
  • But don’t overdo it. You want glow, not glare.

White balance

  • Warm things up slightly (+5 to +10) for friendlier skin tones.
  • Tweak any weird color casts from artificial lights.

Vignette

  • Add a subtle dark edge (-10 to -15) to draw attention inward.

A few editing don’ts to steer clear of:

  • Over-smoothing your skin into porcelain doll territory.
  • Filters so heavy they’ll age your photo by next week.
  • Anything that tweaks your facial features beyond recognition.

And when you’re done, always save in high-res (at least 1000×1000 pixels) to keep things crisp across every platform.

10. Use Gravatar to display your perfect headshot everywhere

You’ve finally nailed the perfect headshot – great lighting, solid pose, zero double chin. Congrats! But now comes the tedious part: Uploading it everywhere. LinkedIn. Company intranet. Slack. GitHub. That random forum you signed up for in 2014. Each site wants a different size, a different crop, a different format. Ugh.

Enter Gravatar: The no-fuss, no-hassle way to make your headshot follow you around the internet like the loyal professional sidekick it was born to be.

Here’s how it works:

  • Gravatar links your email address to your headshot.
  • Any platform that’s Gravatar-enabled pulls in your photo automatically.
  • Update your pic once in your Gravatar account, and it updates everywhere else, no manual uploads or awkward crops required.

And it doesn’t stop at just your photo. Gravatar also lets you round out your online presence with:

  • A professional bio.
  • Verified links to your portfolio and social profiles.
  • Additional professional images.
  • Your contact info.
Example Gravatar bio for headshot tips

The cherry on top? It’s 100% free. Spend five minutes setting up your profile today, and you’ll save yourself countless “ugh-I-need-to-update-my-photo-there-too” headaches down the line – all you need for a polished online presence.

Your perfect headshot + Gravatar = instant professional glow-up

Turns out, you can create a killer professional headshot at home – no fancy cameras, no overpriced photographers, no awkward studio backdrops required. Just your smartphone, some decent lighting, and a little know-how.

By following these 10 steps, you’ve already cracked the code – the gear, the angles, the lighting, the editing – to turn your humble selfie into a headshot that can go toe-to-toe with the pros.

Pair that polished photo with Gravatar, and suddenly your face shows up everywhere you show up – LinkedIn, blogs, email signatures, you name it – without you lifting another finger. You just update your Gravatar once to instantly refresh across the board.

So, carve out an hour to snap that headshot, then take five minutes to set up your (free!) Gravatar profile today.

June 12, 2025  18:37:46

Happy to announce that the amazing Clay.earth product and team is joining Automattic. If you haven’t tried the app out yet, here’s a quick video to give you a taste.

TechCrunch has covered the broader strategy pretty well: One of the top requests we’ve heard from Beeper beta testers is they want to tie in more context, like a personal CRM, and some even requested Clay by name. We’ll keep the apps separate, as Clay also has some interesting team uses, but they will complement and integrate with each other as part of our all-in-one messaging strategy.

We share a vision to integrate Clay’s technology, which manages over 140 million relationships, as a layer across many of our products and experiences at Automattic. I’m excited to work with the founders, Matt and Zach, to bring this vision to life. I’ve always felt the missing primitive in WordPress’ content management data architecture was a scalable concept of a Person and Relationships outside of our user table.

Here’s the beautiful announcement on the Clay site and on Automattic’s.

June 12, 2025  11:41:28

A while ago, there was a call for WordPress Core Committers to share their development setups. Many of them have already done so; I’m finally getting around to sharing mine.

As far as I know, I’m one of the few people that use git-svn. Not only does it shield me from the quirks of Subversion (SVN); it also allows me to use git to work on branches from the WordPress/wordpress-develop GitHub mirror (which has become the de-facto standard for Core development), and to merge my contributions to Core’s SVN repo once they’re ready, all from within the same directory.

The following is based on a blog post by Mark Jaquith that’s over fourteen years old, meaning it predates WordPress/wordpress-develop as well as some new features and behavioral changes in git (and git-svn). I used the official git-svn docs to update accordingly.

Setup

Assuming you already have git and homebrew installed, you’ll need to use the latter to install git-svn:

brew install git-svn

You can now check out the SVN repo. A word of warning before you proceed: Due to the linear nature of SVN, cloning the repository means checking out all ~60k revisions (as of June 2025).1 Even with a fast internet connection, this takes several hours; I let it run overnight.2

git svn clone -s --prefix=svn/ --log-window-size=5000 https://develop.svn.wordpress.org wordpress-develop

Let’s go through the arguments one by one:

  • -s (short for --stdlayout) will make git-svn look for trunk, branches, and tags in the eponymous subdirectories of the repository.
  • --prefix=svn/ (make sure to include the trailing slash!) sets a prefix that’s prepended to remotes in the git ref names that the aforementioned svn directories are mapped to. This defaults to origin, resulting in ref names such as origin/trunk. Since I want to use origin as the name for the WordPress/wordpress-develop GitHub mirror, I set the prefix to svn to denote the SVN repo.
  • --log-window-size=5000: According to the docs, this specifies the number of log entries fetched per request when scanning the SVN repo. The docs recommend setting this to a higher number than the default 100 when cloning large repositories.
  • https://develop.svn.wordpress.org/ is of course the location of the WordPress codebase.
  • wordpress-develop is the name of the target folder that the repo will be cloned into.

Now for the fun part: We can add git remotes and switch between branches like we’d do in any other git repo! Typically, the next thing you’ll want to do is adding the WordPress/wordpress-develop GitHub mirror as origin:

git remote add origin [email protected]:WordPress/wordpress-develop.git

Since you can’t push branches to that repo, you’ll likely also want to add your own fork as a remote (and probably some other folks’, if you want to test their PRs). For my own fork, that’s

git remote add ockham [email protected]:ockham/wordpress-develop.git

Day-to-day Usage

For your day-to-day development, you can use git just like you normally would, i.e. create branches, push them to your remote, fetch updates from the remote, etc.

The only difference is in the handling of the branches checked out from SVN. If you’re on one of of those – e.g. trunk – you don’t use git pull to update, but

git svn rebase

This will fetch the latest commits from the SVN repo and add them to your local copy of the branch.

To fetch any new branches and/or tags that have been created in the SVN repo (e.g. around Feature Freeze for a new WordPress version), you’ll do

git svn fetch

When checking out the branch, remember that you’ll have to include the svn/ prefix to indicate that you want the branch from SVN (rather than from the default origin, which in this setup will point to the WordPress/wordpress-develop GitHub mirror):

git checkout -b 6.8 svn/6.8

You can always use git svn info to find out if the branch you’re currently on was checked out from SVN or git.

Committing Code to SVN

Preparing the commit (the git part)

Let’s say I’ve been working on some code in a git branch called add/my-stuff. Once that code is ready to merge, I start by locally squashing all my changes into one commit. There are different ways of doing this; if you’re unfamiliar with them, you can probably find some online tutorials (this part isn’t specific to git-svn at all). I typically either do an interactive rebase (git rebase -i origin/trunk) if there aren’t a lot of commits, or I reset all commits to the point that the branch deviated from origin/trunk3, i.e.

git reset $(git merge-base origin/trunk $(git rev-parse --abbrev-ref HEAD))

I then simply re-add all files that had any modifications (including new files that were previously untracked)

git add -A

and finally create the commit

git commit

At this point, I typically just paste the commit message that I’ve already prepared in my editor. This is the commit message that’s going into SVN, so it needs to follow Core’s guidelines for commit messages. However, it doesn’t have to be perfect right away; you’ll be able to go back to it later and polish it some more via git commit --amend. Be sure to review both the commit message and code changes by looking at the output of git show.

Pushing the code to SVN

Once I’m happy with my commit, I note its SHA and switch back to trunk. I do a last git svn rebase to fetch all the latest changes from SVN, and then git cherry-pick my commit. It’s probably a good idea to follow up with a final git log and git show to make sure everything is looking alright.

I then push my code to SVN by typing

git svn dcommit

(Yes, that’s dcommit.)That’s the git-svn equivalent of git push! I watch as git-svn does its magic. Once it’s done, I check the Trac ticket and wordpress-develop PR which should now have been automatically closed.

Other tools

I use Rancher Desktop by SUSE, which is a free and open-source replacement for Docker Desktop. I’m using VZ as my virtual machine, and virtiofs as mount type. You can set these in Preferences > Virtual Machine, in the Emulation and Volume tabs, respectively. Note that if you’re on Apple Silicon, you’ll need to Enable Rosetta support, as the wordpressdevelop/php container isn’t natively available for the arm64 architecture yet.

(There’s a chance that I won’t need any of that once macOS 26 is available, since apparently Apple is working on native support for Linux containers.)

  1. While svn itself supports --set-depth immediates to only check out the last n commits, git-svn unfortunately doesn’t. There is a workaround; however, if you ever want to fetch the preceding commits, you’ll have to mess with git history, which is something I’d personally rather avoid. ↩
  2. You might want to disable automatic standby in your operating system’s settings; in macOS, it’s a toggle called Prevent automatic sleeping on power adapter when the display is off. ↩
  3. We’re using origin/trunk as the base branch here (rather than trunk which maps to svn/trunk in this setup), so it’s important to keep that updated regularly (git fetch origin). ↩
June 12, 2025  08:30:00
BobWP wraps up the rebranding of Do the Woo into Open Channels FM. The new channel features five diverse shows, maintaining core values while offering more structure for listeners to explore their interests.
June 11, 2025  14:00:00
Transcript

[00:00:19] Nathan Wrigley: Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.

Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, website maintenance for WordPress agencies and freelancers.

If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.

If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.

So on the podcast today, we have Reyes Martínez, and Héctor de Prada.

Reyes has been involved in the WordPress community since 2015, with a background in journalism, digital communications, and early stage startups. From 2021 to 2024, she was sponsored by Automattic to contribute full-time to global marketing and communication efforts for the WordPress Open Source project, She led several initiatives during that time, including the experimental WordPress Media Corps. Reyes currently serves as content lead at Modular DS.

Héctor has been building websites since he was 12, and has worked with WordPress for nearly a decade, first as a freelancer, then running his own agency. Today, he’s one of the co-founders of Modular DS. He co-organizes the WordPress meetup in León in Spain, and writes a Spanish newsletter that keeps readers updated with the latest news from the WordPress ecosystem.

In this episode, we get into the nitty gritty of WordPress maintenance. What it takes to effectively manage multiple websites, and why maintenance is such a crucial, if often overlooked, part of running a successful client business.

You might think that updating plugins and themes is all there is to it, but Reyes and Héctor explained that there’s much more involved, performing regular backups, monitoring, uptime, and performance, checking for security vulnerabilities, database cleanups, and ensuring essential features like contact forms continue working as expected.

We discuss best practices for educating clients, how to position ongoing maintenance as an investment rather than a cost, and solutions which can help automate and streamline these essential tasks.

We also chat about how the maintenance landscape is changing with upcoming legal requirements around accessibility and privacy, and the emerging business opportunities for professionals specializing solely in website care.

If you’re a freelancer or agency owner looking to scale up your business, perhaps you offer care plans to clients, or are considering adding maintenance plans to your service, this episode is for you.

If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast. Where you’ll find all the other episodes as well.

And so without further delay, I bring you Reyes Martínez and Héctor de Prada.

I am joined on the podcast today by Reyes Martinez and by Héctor de Prada. Hello Both.

[00:03:53] Héctor de Prada: Hello Nathan.

[00:03:54] Reyes Martínez: Hello Nathan.

[00:03:55] Nathan Wrigley: I’m so pleased to have both of you on. This is going to be interesting because I’m going to be speaking to Héctor in about a week’s time as well, which will be kind of interesting. So there’ll be two podcasts coming out in quick succession featuring Héctor.

But the topic will be very different, and I’ll explain in a moment what the topic is going to be about.

But before that, I wonder if we could just get a little bit of an introduction to both of you. If we can keep it around the subject of WordPress that would be helpful.

So let’s go to Reyes first. Tell us exactly who you are, who you work for, what do they do, whatever you like in your little potted bio.

[00:04:29] Reyes Martínez: Yeah, sure. I’m Reyes and I have been part of the WordPress community since 2015. My background is in journalism and digital marketing and communications, and over the past 10 years, more or less, I have worked with startups and tech companies closely connected to the WordPress ecosystem.

And from 2021 and 2024, I was sponsored by Automattic to contribute full time to the WordPress project, where I had the opportunity to contribute to different marketing and communications initiatives.

And now I am the content lead at Modular DS. We’re building a tool to help freelancers and agencies manage multiple WordPress sites more efficiently.

[00:05:13] Nathan Wrigley: Thank you so much. And let’s move over to Héctor. Similar question really, just give us your little potted bio.

[00:05:19] Héctor de Prada: Of course. Well, I have been making websites, I always say almost all my life, since I was like very young, at 12, 13 years old. At the beginning, not with WordPress, I have to say. But I started working with WordPress around 8, 9 years ago when I started freelancing as a web designer, and that evolved to creating a web design agency.

So I have been doing web design and websites, WordPress websites, for a long time. And 4 years ago almost, it’s when my partner and I, David and I, we started our current company, which is Modular DS, which is now where Reyes is working.

I am also part of the community. This is what you were saying, Nathan, that we are going to talk about, WordCamp Europe, because I am one of the organisers at the meetup in León, in my city. So this is also something I like a lot because we go to a lot of WordCamps, a lot of WordPress events, and it’s very nice to be able to do that in our own city as well.

[00:06:20] Nathan Wrigley: Thank you both so much. So if we stray into anything today, like a blog post is mentioned or a homepage or anything like that is mentioned, I will endeavor to link to that into the show notes. So if you head to wptavern.com and then search for the episode with these two fine people, then you’ll be able to find all of those links. It’s going to be easier to do it that way than to read anything out in an audio podcast.

The approach I think I want to take with this episode is one of somebody fairly new in the WordPress space. So if you are new in the WordPress space, then you might just have the one website. And maintaining that one simple website is probably a reasonably straightforward thing to do. You know, you log in, you update the plugins, you update the themes and what have you.

But if you’ve got any aspirations of becoming a bigger player in the WordPress space, perhaps you want to take on the job of maintaining multiple websites, perhaps you want to have clients and you want to maintain their websites, it becomes fairly obvious, fairly quickly, it’s a bit of a chore. There’s quite a lot of tasks that you need to do in order to keep those websites live.

So that’s what we’re going to talk about. What are those tasks? What’s important to notice if you are a WordPress freelancer or agency owner. What are the things that you need to make sure that your clients are getting updated with and for? And then I guess we’ll sort of mention right at the beginning that Modular DS is something which kind of can take that process off your shoulders and make it fairly automated. But you can go and check out that of your own accord.

So let’s just get into it then. What are the things that you would need to worry about? You can interrupt each other as you see fit. What are the kind of tasks that as a newbie WordPress we may not even know are coming our way, when we’ve got 2, 3, 5, 50 websites that we’ve got to keep maintained?

[00:08:14] Héctor de Prada: I don’t think it’s, how to say, like that we don’t know we have to do that, or that we don’t expect to do it when we are trying to manage a few websites. Reyes and I, we were talking this morning, normally maintenance or maintenance tasks are something nobody is very thrilled about doing, okay. It’s not like the best job. Like, you can be a designer because you love creativity and designing things, or a developer because you love to build things.

But I haven’t met anybody that is like, oh, my dream is to update plugins, create backups, and restore the website when it’s broken, you know? I think that’s the number one challenge, okay. Normally I see that one of the biggest problems is that we know maintenance has to be done in a website, but we don’t always do it. And when we have more and more websites, it becomes even a bigger problem, because we also let it aside more and more because it’s too much work. So that’s one of the main problems.

[00:09:17] Nathan Wrigley: One of the things that in my life, I don’t know what the number of websites was, but there was a point where each morning, because I decided to do the updating on a more or less daily basis, there came a point where you realise that you’d now logged into X number of websites. So you’d gone to the URL to log in, you’d found the username and password, you’d logged in, you’d inspected whether there were plugins or themes to be updated. You’d gone to them individually, you’d update them in a careful manner to make sure nothing got broken, and you moved on to the next website. And at some point you kind of have the intuition, how many minutes or hours have I just lost?

And whilst for one or two websites this really isn’t a problem, I guess what we’re talking about here is something at scale, when you’re over a, let’s say 2 or 3 or 5, or whatever that number is. It does start to add up, and you can’t afford to waste time in that way. And I think it’s exactly like you said, you don’t really know going into it that this is what you’re going to end up doing with your WordPress websites. But you’re right, nobody wrote down on their bucket list of things to do in life, I would like to update plugins for a living.

[00:10:23] Héctor de Prada: And it’s very important at the same time. Like we said, yeah, maybe Reyes, you can say a little bit more about it. But maintenance, it’s really important for many reasons, in particular in the WordPress ecosystem.

[00:10:34] Reyes Martínez: Yeah, I would say that it’s just that, that it’s not the most glamorous part of managing a website, like all the maintenance tasks. But I think it’s also what keep things running smoothly and professionally. I guess that’s the difference between being reactive and being proactive as well. I mean, that makes all the difference. So even though it’s not the most, I don’t know, glamorous part, it’s still very important to keep things professionally.

[00:11:03] Nathan Wrigley: What are the things that we’re updating? So we’ve covered plugins and themes, and I suspect that they’re the ones most people, and again, the audience for this podcast is really broad, so obviously that sentence will be really blindingly obvious to many people. But there may be a proportion of people who don’t even know that that kind of stuff needs to be updated. So let’s just work from the basics upwards. There’s plugins and themes. When you talk about maintenance, what else are you bringing into that?

[00:11:30] Héctor de Prada: You have the updates, both plugin, themes and the Core of WordPress, because it also gets updated. Now it’s once a year, it used to be like two, three times a year so those are also very important updates. But normally it’s mostly, because some people might ask, why should I update a plugin? If my website is working, if it’s perfectly fine, why do I have to update a plugin or a theme?

Well, one of the biggest things in maintenance, because we have to do these updates, is the security part. I am positive that WordPress is a secure solution, that is why it powers 40 something percent of the web. But at the same time, we have 60,000 different plugins just in the WordPress repository. Each one of them is created by an independent team or developers. And even when everybody tries to create the best possible plugin, a secure plugin, and everything, there is human error, of course. And there is always people, since WordPress is so popular, trying to find vulnerabilities to attack these kind of plugins or themes.

So many times, the most important updates are security updates. To avoid that, you have an older version of a plugin or a theme that maybe got exposed, and somebody found a vulnerability, and your website might get hacked because you didn’t do the updates. So even if your website is functioning perfectly, you should still do those updates. And this is something, for example, a lot of end clients, they normally don’t understand when you run an agency and stuff, because they don’t see the point of doing this. But this is one of the reasons, it’s super important.

[00:13:08] Nathan Wrigley: In the normal experience in life, you go into a shop and you buy a thing, like some new sunglasses or a pair of shoes. You don’t anticipate having to update the shoes or update the sunglasses. You kind of just bought the thing and the thing is now yours and off it goes. You know, you expect it to function as sunglasses from now on, and the shoes will keep going as shoes. You know, you might have to replace them from time to time, but that’s another thing altogether. So it’s kind of hard to encapsulate that.

But also, I suspect that most clients wouldn’t even know that there’s this sort of specter of security problems and the fact that bad things could potentially happen. Most clients I imagine have just come to you, the agency, the freelancer, because they want a website. They’re not interested particularly in all of that, but you have to explain that to them. And I always thought that was quite hard. I always got an intuition that the clients kind of thought, what are you on about? I’ve just bought this thing from you, why do I need to update it? Why do I need to keep doing these things?

[00:14:07] Héctor de Prada: Education is one of the biggest parts in having a WordPress maintenance service in your agency or as a professional. Most people, end clients, many people is not tech people so they won’t understand. Updates, backups, these are all very not tangible things. So it’s not hard to explain, but it is more, it’s not like you go to a store, okay? You buy something, it normally doesn’t need maintenance. But I would say it’s like, you buy a house, you buy a car, it needs maintenance, okay? Because you can keep running with a car, but even if the car still works, maybe the brakes, at some point they will stop working and you will have a crash and nobody wants that. So I would say a website is more like a car than a normal product.

[00:14:49] Nathan Wrigley: Yeah, that’s a really nice example because with a car particularly, there are bad people who are literally trying to break into the car and take the car away, or do damage to the car, or steal bits from the car. That explains it really well.

Okay, let’s imagine that you’ve had that conversation, you’ve done that education piece, you’ve said to the clients, look, we need some kind of thing going on in the background. There has to be some kind of ongoing relationship between me, the website builder, the developer, and you, the client. But what are those tasks? What are the things, I guess your software will handle these kind of things, but just talking about them hypothetically, what are the list of things just beyond plugin, theme, Core updates? Are there any other things which you recommend?

[00:15:32] Reyes Martínez: Besides updates there are also, for example, like I think it’s very important making regular backups. Monitoring up time and performance. Checking for security issues, you were just talking about that as well. Vulnerabilities, cleaning up the database, and in general, like making sure the site is running smoothly, like contact forms and links are working.

Because there are things that even people think they might have not, I don’t know, like they are not very important. They can have an impact on their business as well. For example, like a broken contact form, that’s just like a very small example, but yeah, those things come to mind. I don’t know, Héctor, if you want to add anything else.

[00:16:15] Héctor de Prada: I think those are the main ones, like your backups and the restoration of the backups when you have a problem. It happened to me I have to say. When we had the agency, I remember more than a few times having a client calling me and telling me, hey Héctor, the website is not working. And I was like, I didn’t know. So it’s like a very, very embarrassing moment because you’re supposed to be taking care of the website, but you didn’t know it wasn’t working until the client told you.

So things like monitoring. When I started making websites, I couldn’t monitor them at all. If they break, I wouldn’t find out because somebody told me or I was just trying to do something and I found out. So monitoring as well. Security Monitoring, like you said, for vulnerabilities, for malware. There are a bunch of tools. I mean, it’s not only tools, maintenance tools, like it can be Modular or others.

There are a bunch of tools in WordPress, like for everything in WordPress, that can help you with this maintenance task. Because the ideal thing, like we were saying, is to automate them so they don’t take so much time. Even if you only have one website, the ideal thing is that backups, monitoring, you have most of it automated, so you make sure even if you forget, if you go on holiday or whatever, it will still be running.

[00:17:30] Reyes Martínez: Yeah, and you can get alerts, for example. Like Héctor was saying, if a website goes down, you can get alerts so you don’t have to be monitoring all the time. Imagine like manual monitoring or going site by site, just checking if everything is working correctly. And monitoring, it’s exactly a big task as well of maintenance and because it can help you catch problems early.

[00:17:55] Nathan Wrigley: Okay, let’s just break all that now and then. So we’re imagining a scenario where we’ve built a website, we’ve handed it over to a client, and then we’re sort of presenting with the client the scenario, look, although we’ve given you the thing, here’s the website, there it is, it’s on the internet, there’s a whole load of other things that we need to do in the background.

And there’s an education piece there, but there’s also a bit of sales that has to go on there because you have to persuade them, presumably that the thing that I’m suggesting here, you are going to need to pay for probably, there’ll be a, some kind of subscription model going on there. We will do all of these things in return for a monthly fee or whatever it might be.

But broadly it is updating things. So that’s plugins, themes and Core. Making sure that those things are available. Then there’s the backup piece, a different thing altogether, and that’s just basically storing in multiple locations, an entire version of the website, the database, and the files to make sure that if an absolute catastrophe occurs, you can go back to whenever the website was last saved successfully, minus any security problems that you might have.

And then another thing is uptime monitoring, which is the process of just alerting you, and I presume it’s you, not the client, that something’s gone wrong. The website that was there 10 minutes ago is not here now. And that’s a really, really, you know, that’s not a once a day thing, that’s once every two minutes kind of thing. You want to know the minute the website goes down, so that you can be the person that contacts the client to say, look, we see that the website’s gone down. And in some curious sense, you actually paint yourself in a good light by admitting something before they’ve even learned about it.

But also something that you said that I never really think about is the idea of bits of the website, which may appear to work, but which don’t work. So the contact form is a big one. You know that whole egg on your face moment where you realise that possibly for six months, the contact form hasn’t worked, has never worked, and you have no way of saying to your client, look, sorry, we’ll be able to reverse that, we’ll be able to get all of the contact forms that would have been submitted over the last six months, because you won’t. It’s gone. And if it wasn’t working, that’s a catastrophe.

But then my mind then goes to things like e-commerce. The site might look fine. Everything might check out okay, when I say checkout, I don’t mean checkout through the cart, I mean, looks fine. But the checkout might not work. Maybe people can’t actually buy things off your website, so it’s up but it’s not working.

So there’s all this stuff. And I guess what Modular DS is doing, and the rivals that you’ve got in that space, is they’re trying to take all of those tasks, package them up into a wrapper piece of software, and basically you don’t really have to worry too much about it. You just sort of set it all up, make sure that all the dominoes are set up in the right place. And then it will do all of those things for you without you having to do too much. Have I got that about right?

[00:20:54] Héctor de Prada: Yeah, of course. That’s the idea, to try to centralise everything when you have a lot of websites. And at the same time, like we were saying, yeah, automate these kinds of tasks so they don’t slip away. And it’s a great point about the WooCommerce because one thing about maintenance is that it’s very dependent on the type of website you have. I mean, it’s not the same maintenance you have to do for maybe a small corporate website, like the Meetup group website, for example, than a big e-commerce that is selling hundreds of products every day. You won’t need to have the same systems in place, not for backups, not for monitoring, not for any kind of checks. So that’s also very important to know. Maintenance is very different depending on the website.

[00:21:38] Nathan Wrigley: So in the case of this whole idea of being able to do this for your client, I’m guessing your position would be that this is something that you can in fact sell to your clients on a regular basis. It’s not like you built the site back in 2024 and you’ve charged a fee for it, and then that’s the end of that. This is more of a, you charged a fee to build the website, and now we have this kind of, I think the term which I hear used a lot is like Care Plan or something like that.

Some kind of process of, on a monthly basis, annual basis, whatever it might be, you offer these different things in return for a subscription fee, and therefore kind of have recurring revenue. And in many cases that recurring revenue might not need a lot of work. You know, fingers crossed, if everything works out okay, and WordPress updates itself correctly, and the plugins all work out and there are no security vulnerabilities, you might have days, weeks, entire months go by where your revenue is really not that difficult to manage.

[00:22:39] Héctor de Prada: In what you said there, it’s like all the main things. Not only you can offer Care Plans or Web Maintenance Plans, but you should as a professional. Because I’ve heard you talk on another podcast, Nathan, you were saying that when you’re a freelancer or an agency, you are always waiting for next projects to see when they come. What’s going to be next? And if you’re going to have enough work to keep going.

And that’s why recurring revenue, it’s so important for us as professionals. And in web design or web development, it’s not so easy to get besides web maintenance. It might be if you want to go to plugin development or theme development or do something like that, you can start getting recurring revenue.

But if it’s just building websites, I think the only way to get that recurring revenue is by offering Care Plans. That’s why I always say, the critical thing that you were also mentioning before, is that it’s of course also a sales job to sell this to a client, but I don’t think it has to be once the website is generated, and you try to tell the client, okay, we did the website, it’s looking good, it’s working. And now we are going to do maintenance on the website, and you have to pay this or that.

I think it has to go way before that. When we were an agency, what worked really good for us, so I always give this advice because it really worked for us, is that we used to talk about maintenance with the clients before we started the website project. If somebody would come to us saying, okay, we want a new website design for our company, we’d include it always in our proposal. It’ll be, okay, we are going to design the website, we are going to do the development of the website, and then after that we are going to care for the website.

So we are going to do a maintenance on the website because this is very important. We are not going to just leave you there with your website, out in the open. Like, you don’t really know how it works, but we are going to be there with you. And this was like a massive change for us because when we were selling it this way, once the website was completed and we would tell the client, okay, now is the time to start the web maintenance job, and they were like, oh great, so this what we were talking about. It is not even a discussion anymore. It is like, oh great, it’s finally the time. So that’s like crucial. It was crucial for us.

[00:25:00] Nathan Wrigley: Yeah, I think when people do get recurring revenue into their business, especially around maintenance, it does feel like, why didn’t I do this before? Because it really is kind of, I hate to use the phrase, you are kind of leaving money on the table a little bit.

I wonder what both of you have in your head around the way to pitch that product. Because I went through lots of different ways of doing it. Some of them I’m not that proud of. So for example, in some cases I would emphasise the problems that could happen. You know, your website could go down. The internet can be a bit of a dark place, there’s hackers out there. And in the end it felt a bit like, I’m trying to scare you into giving me this maintenance deal. But then on the other hand, there was the sort of more positive way of doing it. You know, we’ll make sure that your website is always up and just different ways.

I wonder how you, both of you, tackle that. Do you have a particular kind of language? Do you have like a brochure or a booklet that you pass on to somebody which outlines it all?

[00:25:59] Héctor de Prada: For us, at least when we were an agency, you are seeing that I like to talk a lot. So for me it was like I could talk a lot with the clients. I would just try to be very educational, like we said from the beginning, in calls or in meetings I could talk about maintenance, the task it requires. Trying to explain it for everybody, of course, like not trying to make it sound technical or anything. Just trying to make them understand that technology evolves, WordPress evolves, the needs that the website, or the business, might have change so we should keep the website evolving with the business so it always stays in good shape.

Luckily, even when this is a terrible thing for our field, is that many, many clients, they come to you when they have had a bad experience before, having a website design. And this experience, so many times has more to do about not having maintenance than about the web design itself. Because they might come after three, four years and they might tell you, somebody did this website for me four years ago and now nothing works.

And it’s like, okay, when they did the website, everything worked. What happened? Nobody looked at the website for four years, so now nothing is working, which is understandable. So that also helps you a lot to make them understand that you don’t want that to happen again.

[00:27:22] Reyes Martínez: I think it’s also important to maybe reframe things or just showing clients that that’s part of, I mean that you care about their success over time. So it’s not just about launching their site. I don’t know, sometimes I like to think about maintenance as insurance. You hope you don’t need it, but if something goes wrong, you’ll be glad to have it. So I think it’s the same. Like, if you have someone who’s taking care of your website to make sure it’s healthy, that it is performant and that everything is running smoothly. I think you are investing in its long-term success as well.

[00:27:57] Nathan Wrigley: Framing it as an investment is quite a good way around it, isn’t it? As opposed to a, it’s not like a cost, it’s an investment. You’re putting something in so that it maintains. Spending money kind of feels like, oh, I’ve spent it, it’s all gone. Whereas an investment, you feel a bit more like, okay, I’ve spent some money, but as a result, things are going to be better in the future.

[00:28:15] Héctor de Prada: You both said it, Reyes, you said right now that it is kind of an insurance also, if something bad happens. Because when something really bad, like the website crashes or gets hacked or whatever, because it can always happen, at some point everybody will be glad to have a professional taking care of things.

Because another way to frame this, and you were saying that before Nathan, is that I’ve seen many, many professionals that they are like, okay, so the client doesn’t want to pay for maintenance, so I’m just going to wait until they have a huge problem that will come sooner or later. When they come without the maintenance deal, I’m going to charge them a bunch and then they will be glad they get the maintenance package. And they will start paying for that. I’m not saying I recommend that, I haven’t done that, but I’ve seen so many people do that at the same time.

[00:29:04] Nathan Wrigley: Yeah, I think describing his insurance is quite interesting. The curious thing about insurance is, how to describe it, at some point you might begin to resent paying the insurance if you never have an accident or nothing is ever stolen. So one of the things that I often got with the Care Plans was this whole thing of years would go by, I would do my job well, so nothing ever happened.

And so after 24 months of nothing ever happening, the client would turn around and say, what am I actually spending the money on? And then it occurred to me, okay, maybe there should have been some process of telling you what I was doing each month. Some kind of report or something to give to the client to say, look, literally things are happening. It’s not like we’ve gone away with your monthly subscription and done nothing.

So I wondered if you had any thoughts around those, you know those clients who think nothing’s happening, why am I spending this each month in order for apparently nothing to happen? It’s just a black hole.

[00:30:02] Reyes Martínez: That’s actually one of the hardest parts as well, like showing all the work that professionals are, like us are doing in the background. That work, that it’s not so visible as well, and how to communicate the value of all that work.

So I think there are, I don’t know, there are many different ways to communicate that value, but for example, like reports are pretty common. Showing, not just task, but all you have been monitoring and performance data, updates. And just, again, like educating on how all the work done have an impact on their business.

Because I think it’s also easy to go maybe, or to get into technical details, but I think clients don’t really care if you update a plugin or if you, you know, how you are maintaining their site. I think they care that their website is secure, fast and it’s working. It’s always working.

[00:30:58] Nathan Wrigley: One of the things that I ended up doing, which I think worked well was, I eventually landed on the idea of this report thing. So I would issue a report and it would say, during the course of the last month, these things have happened. And it would be a list of all the plugins that been updated, maybe WordPress Core had been updated, maybe I’d done some work on the server to update that, a PHP version or something like that. So all of those kind of things. And then some kind of indication of how the uptime went. You know, it was 99.9% last month, we had a little glitch on Tuesday or whatever, but that was taken care of within five minutes.

But the thing which worked best for me was I offered a proportion of time, based upon the plan that they gave me, of my actual time. And that could be deployed in any which way they wanted.So, for example, it could have been, I will just tell you what that report means or let’s just knock our heads together for half an hour or an hour, and figure out if there’s anything you wanted doing on the website. Maybe you want a telephone number updating or you want to have a different design on the homepage because Christmas is coming or whatever it might be.

And interestingly, most clients never took me up on it, but the mere fact that it was offered, and I’d offered the time, there was just something a bit more to it. There was something more tangible and more credible about it. And then when the clients did take me up on it, and I could explain what had happened and that it wasn’t this black hole where the money was just falling into for the maintenance plan and nothing happened, that really worked.

But I had the time available. And it may be that some people, most people don’t have that time available. For me, that was a good thing, you know, that kind of personal touch was a way to make it work.

[00:32:33] Héctor de Prada: Also another thing that is very important to solve, for example, in client reports, and it’s not so obvious, it’s because it is not a job you are doing. It’s some stats about how the website is working for their business. Because 99% of the time a website comes from a business that needs an online presence.

So it should be very important for them to know how this is performing or how this is helping the business. And I found this hundreds of times, that people have a website and they don’t know if somebody’s visiting the website, if you can find it on Google. They don’t know anything about the website. They are just like, yeah, I have a website there, but I don’t really know what’s happening with it.

So I think adding things like, I don’t know, like Google Analytics or any other analytics. Or search console results so you know, it’s somebody coming from Google or where is people coming. Or if you have an international website, from which countries is people coming. Things like that, I think it’s like very valuable for the end client, for the business, to know how the website is performing. And it’s not always added, but I think it’s crucial to also put that information.

[00:33:41] Nathan Wrigley: Do you know if anybody actually makes a business out of what you do? So, do people have a business of maintaining websites? Just doing that work. So they’ve decided they don’t want to be involved in creating the website, but they want to turn this product, if you like, that we’re talking about now. Is that a thing? Do people do that for a living? They maintain other people’s websites for them. Maybe you could bind yourself to an agency and they would hand the maintenance side to you. You are both nodding, so I’m guessing the answer’s yes.

[00:34:11] Héctor de Prada: We know many people, but we are kind of biased because most of our clients are agencies or freelancers that manage a lot of websites. So many of them are actually specialised in this kind of service. So we have freelancers that manage like 120 websites, and that’s all they do. They don’t do any websites, they just manage websites.

And then we have agencies that they are like fully specialised in web maintenance, web caring, and maybe if you have an urgency in your site because it’s broken or something, they can help you with that also. But they don’t design websites or create new websites.

So I think, yes. And one example I always say is that, at least in Spain, if you search in Google for WordPress maintenance, there are so many page results. So that means it’s a profitable business, okay? There is a lot of competence of people trying to get leads out of those keywords. I would imagine in most countries it could be the same. So yeah, definitely. I think it’s possible. I see it every day, so yeah, a hundred percent

[00:35:10] Nathan Wrigley: That’s kind of interesting because it may be that you are, I don’t know, you just want to take a break from actually building websites, and this might be an interesting way to pivot, especially if you’ve got your foot in the door with a bunch of agencies, and you know people that could supply you that work and they don’t wish to be involved in that. That’s curious.

[00:35:27] Héctor de Prada: You can automate much more stuff than in a web design process, or web development. In maintenance, like we were saying, with tools like Modular or other tools, you can automate most of the maintenance tasks. So many times, yeah, like one person can manage like 120 websites. Imagine how long it would take to build 120 websites. It’s almost impossible. You could say, oh, I don’t know, like five years, seven years. But you can maintain every week or every month, 120 websites by yourselves, just with the tools that are available. So that’s a really big difference.

[00:36:04] Nathan Wrigley: Does this maintenance landscape change? Because I’m just curious, the web industry changes all the time, but broadly, you know, plugins and theme updates, that’s been around since WordPress got plugins and themes. Hosting and backups, again, similar.

But there have been developments in the more recent past where I’m thinking, okay, you could definitely push that into the maintenance idea. So things that come to mind are, I don’t know, optimisation, Core Web Vital scores, maybe something like that could leak in.

And the one at the minute, which I think would be really interesting, and again, maybe it’s a thing already, is accessibility. Some kind of report about, okay, it looks like these pages need a particular bit of attention, or something’s gone wrong here from an accessibility point of view. And so really my question there is, does the landscape of maintenance change, or is it broadly fixed with whatever it is now is how it’ll be in a decade?

[00:36:57] Héctor de Prada: Now also with AI, I don’t even know what’s going to happen in a decade. But I do think things change. For example, with accessibility, like you said, now in Europe it’s going to be big changes. With security as well, with the new Cyber Resilience Act, it’s going to be changes.

And for example, we saw it a few years ago with the data privacy law in Europe. I’ve seen so many agencies offering legal checks for the cookie banners and things like that. To also add in maintenance, I don’t know, like seven years ago, that wasn’t a theme because it wasn’t mandatory, so nobody really cared that much. And it is the same with accessibility.

A few years ago, nobody, almost nobody cared about that. And I think now because of the law changes, this is going to change drastically and almost every professional is going to start doing things related to accessibility, and is going to care about that. And it’s also going to be able to offer that to their clients as an upsell, or as an extra value, they’re going to give in their care plans.

So yeah, I do think it changes. We don’t have a lot of changes because the basics are always the same, the updates, the backups, the monitoring. But there are things that, yeah, might bring big changes every once in a while and we have to adapt.

[00:38:12] Reyes Martínez: I just wanted to add that also with AI and no-code tools, I mean, it’s easier than ever to launch a website. But what happens after that? Because maybe we find that more and more sites are being left behind with no updates, no backups.

What I mean with this is that maybe, maybe not, there’s already a growing maybe opportunity, because there are more and more sites that we don’t know what would happen with them. And they will need maintenance for sure. So I think we are seeing a growing opportunity as well, there for people who want to manage or dedicate themselves to maintain websites, yeah.

[00:38:51] Nathan Wrigley: Yeah, it does feel like in the year 2025 when we’re recording this, there are some key bits of legislation which are coming. You know, the European Accessibility Act very, very soon going to be completely mandatory across the whole of the EU. I mean, basically it should be something that you’ve taken care of already, but nevertheless.

And so these kind of things I imagine, will become part of the platform, the ethos of doing maintenance in the future. So that’s kind of interesting.

Just for the last moment or two, minute or two, let’s talk a little bit about what you have. So Modular DS, I’ll put a link into the show notes, but is the URL, is it modulards.com? Is that where we would go?

[00:39:30] Héctor de Prada: Yeah, we could say dash EN for the English version.

[00:39:33] Nathan Wrigley: Lovely, okay, so I will link to that into the show notes. I’ll link to the English version in this case, just because I think that makes most sense given that we’re all talking in English.

This is what you do. This is that in a nutshell. You have a service that you can sign up to. Is it plugin based? Is it a SaaS? Is it a mixture of SaaS and a plugin? How does it work and what kind of things can you do?

[00:39:56] Héctor de Prada: It’s kind of a mixture. It’s a SaaS outside of WordPress, we are going to say, but it needs a connector plugin to connect your websites to Modular DS. So basically what you do is you connect your different websites, the ones you manage, to Modular, and then from there you can like centralise most of the maintenance tasks, do updates, for example, in all the sites at the same time.

And also you can automate monitoring, vulnerability analysis. You can automate client reports like the generation of this client reports. So it basically tries to help, yeah, agencies, freelancer to save time, to have a good maintenance business. And also, like we have been saying, to sell the maintenance business to their clients, which we all know is not easy. So that’s what we try to do.

[00:40:42] Nathan Wrigley: So if I were somebody looking after my site and a bunch of others, you cater to that market, but also you are catering towards the more agency owner, if you know what I mean, where they’ve got multiple websites.

Is it possible to, white label is often the word I hear surrounding this. Is it possible to sort of make it so that it appears your own? That seems to be something that people really like, but I don’t know if you offer that feature.

[00:41:04] Héctor de Prada: You can white label everything that goes to the client. Let’s say, client reports. Of course, you can white label that, like your agency logo, your agency email to send the reports. Also, you can white label the plugin. So in the WordPress installation, you can change the plugin info so the client doesn’t know you’re using Modular, if you don’t want them to know. So yeah, of course, that’s important for many professionals, yeah.

[00:41:27] Nathan Wrigley: You could definitely be checking that out. And obviously this entire episode really was to provide an education piece around what it is that you might need to do, especially for those people who are new. You may not realise that there’s an actual business opportunity here for you, but also that there’s a whole cavalcade of different things that you can do.

So just to reprise, plugin, theme, updates, plus up time monitoring, backups, client reports. There’s a whole laundry list of things in there.

Yeah, I think that’s everything I wanted to ask. So if that’s the case, I will say, Reyes and Héctor, thank you very much for chatting to me today. I really appreciate it.

[00:42:04] Héctor de Prada: Well, thank you, Nathan.

[00:42:05] Reyes Martínez: Thank you.

On the podcast today we have Reyes Martínez and Héctor De Prada.

Reyes has been involved in the WordPress community since 2015, with a background in journalism, digital communications, and early-stage startups. From 2021 to 2024, she was sponsored by Automattic to contribute full-time to global marketing and communication efforts for the WordPress open-source project. She led several initiatives during that time, including the experimental WordPress Media Corps. Reyes currently serves as Content Lead at Modular DS.

Héctor has been building websites since he was 12 and has worked with WordPress for nearly a decade, first as a freelancer, then running his own agency. Today, he’s one of the co-founders of Modular DS. He co-organizes the WordPress meetup in León in Spain, and writes a Spanish newsletter that keeps readers updated with the latest news from the WordPress ecosystem.

In this episode, we get into the nitty-gritty of WordPress maintenance. What it takes to effectively manage multiple websites, and why maintenance is such a crucial, if often overlooked, part of running a successful client business.

You might think that updating plugins and themes is all there is to it, but Reyes and Héctor explain that there’s much more involved: performing regular backups, monitoring uptime and performance, checking for security vulnerabilities, database clean-ups, and ensuring essential site features like contact forms continue working as expected.

We discuss best practices for educating clients, how to position ongoing maintenance as an investment rather than a cost, and solutions which can help automate and streamline these essential tasks.

We also chat about how the maintenance landscape is changing, with upcoming legal requirements around accessibility and privacy, and the emerging business opportunities for professionals specializing solely in website care.

If you’re a freelancer or agency owner looking to scale up your business, perhaps you offer care plans to clients, or are considering adding maintenance plans to your services, this episode’s for you.

Useful links

Modular DS

Meetup in  León, Spain

Cyber Resilience Act

June 11, 2025  09:44:00
Bob's getting close to wrapping up the series and introducing "Open Source Reach," exploring open source's real-world impacts beyond coding.
June 10, 2025  09:22:22
It means a lot to be recognized by a publication that truly gets the WordPress ecosystem.
June 10, 2025  08:32:00
On today’s BobWP Unplugged, host BobWP walks us through day five of the OpenChannel FM rebranding series. He gives us a look at Content Sparks, and each series designed to help creators make smarter digital content, from streamlining workflows and harnessing AI, to mastering storytelling and media strategy. If you’re passionate about creating great content […]
June 9, 2025  15:19:19

Congratulations to the FAIR team on thier launch. 1.0 is the lonliest number, so getting to to this milestone is something for them to celebrate and I hope the team behind it feels great about getting this far.

One of the best parts of getting to a public release is that you start getting feedback from real users. Some of that is coming out and I’m sure I will have some to add, at this point I don’t yet have a solid opinion on FAIR. What I do have are some questions I haven’t found the answer to while reading the protocol documentation. I am hoping someone can either point me to the documentation for each of these or answer directly while I continue to digest as much as I can:

  1. How does someone report a bad actor in a federated repository? If I discover someone who is acting in bad faith, do I need to track down every discovery aggregator, inform them independetly, and have each do its own investigation before users are protected?
    • For this purpose, I’m using Bad Actor in all of it’s possible meanings including introducing intentional and unintentional security issues, hacked accounts, and people being jerks.
  2. What happens if different aggregagtors accept the same name for a plugin/theme? What can be done to prevent user confusion?
    • I think this is also important since someone doing local development with one aggregator but using a different in production feels like a distinct possibility.
  3. In order to be listed in the plugin, is there a standard for the aggregator and the standards that they set for inclusion?
    • Similiarly, how will these standards be monitored for potential exclusion later on?
  4. If the Decentralized ID is based on the repo, does that mean you can not transfer ownership of a plugin?
    • The documentaiton states “Vendors SHOULD use DID methods that are future-proof for data portability, and which avoid encoding trademarks or potentially-ephemeral names or domains.” Does this mean that Github should be avoided since it is a trademark?
  5. Does FAIR have a concept of release confirmations or other 2nd factor for releases?
  6. How do reviews work in a decentralized manner? If I have an opinion on a plugin, will I need to share it with all aggregators?
    • On a similiar basis, if reviews are going to multiple places, what is the plan to combat sock puppets?

I imagine some of these are questions that will need to get answered over time, and also that for some, today’s answer may not be tomorrow’s. As with all open source projects, I can only imagine FAIR will change over time.

The post Some initial questions about FAIR appeared first on Aaron Jorbin.

June 9, 2025  09:02:00
BobWP is shaking things up with a rebrand of his podcast, introducing "WP Voices", where community members share their WordPress experiences. Expect humor, familiar faces, and new shows focusing on agency life, core and multisites.
June 9, 2025  08:14:31

WordCamp Europe has just concluded, and one term that emerged during the contribution day discussions across a wide range of areas was ‘roadmaps’. As someone who appreciates the power of a roadmap and aligning with it, working towards agreed-upon goals, this couldn’t make me happier. It makes me think curiously whether everyone is using the term in the same way, and I wanted to examine how we could define these terms openly and come to a shared understanding of what they mean.

Basic definitions

The reality is that even in companies, the definition and use of the term ‘roadmap’ can vary significantly. This may be due to frameworks and processes, or it may simply be a matter of personal preference. In order, though, to have them work on an open project, some common understanding has to be reached. We start at the beginning, and it is clear what the vision is and what a roadmap is.

Vision: a high-level, inspirational description of what you hope to achieve in the long term. This is often seen as the “why” and “what” and the ultimate destination everyone works towards.

A roadmap is a practical, time-based plan that involves action and outlines how to achieve a vision through specific steps. It includes milestones, notes, priorities and ties to deliverables.

Why not both?

To answer this, we need both in most projects. WordPress is no exception, and it is similar to other open source platforms; both are essential. To have both, though, you need clear definitions and differences between them.

The vision needs to be clear about where you want to go, broad, inspiring, and strategic. It’s a partner that helps with the roadmap and the plan for getting there. This is detailed, tactical and tied to times.

“A vision gives people a reason to care; a roadmap gives them a way to help.”

Nadia Eghbal

Combining both is essential. The roadmap gets you towards the vision, but it doesn’t define it. In my opinion, as the wider project has a vision, each team and component also likely has a vision, but these should always align with and add up to support the broad vision. This is why defining roadmaps and visions in isolation is often problematic in larger projects.

Essential duplicity

To look more at why both matter in an open-source project, you can split each into relatively easy formats:

A vision:

  • Unites contributors around a shared purpose.
  • Inspires commitment over time. A vision doesn’t specifically though allocate that inspiration or fund; that’s the roadmap.
  • Clarifies what the project is not. Often more essential than we think.

A roadmap:

  • Shows the process. It allows each stage to be broken down into the steps required to achieve it.
  • Organizes contributions. Which in turn attracts and allocates people and funding.
  • Builds trust and focus. By seeing what is being done at a given point, it can be clear to everyone, whether they are contributor, sponsors, makers, users, supporters, or implementors.

Whilst they aren’t the same, they certainly are companions to each other. A roadmap without a vision is a guess. It’s placing things on a calendar and hoping for delivery. A roadmap that lacks a clear vision is unable to gain focus and often spirals due to a lack of delivery. A vision that serves as a roadmap is uninspiring and fails to clarify or unite.

Defining in open

This is the more complex piece. It’s all well and good to know the difference and want to do this. You then need to take these seeds, grow them into roadmaps and visions, and collectively agree, because that is how open things get buy-in.

A simple process is a first pass from those leading the work, facilitated, distilled, and then shared, reviewed, and iterated. This is typical amongst open source projects. In WordPress, we have had several variations over time, and now we need to determine what works today. Both need to be shared; a roadmap is a document to check and measure against, a living thing.

Beyond defining

As we move forward into the second half of this year, the topic of roadmaps arises. Let’s make sure they are roadmaps. We could collaborate on a project to define what they are for us and share the results somewhere. Having an agreed-upon definition and working from it helps everyone, regardless of their approach to this topic.

“Open source thrives on clarity. A vision tells us why to show up, and a roadmap shows us how to move forward together.”

Danese Cooper

The reality is we need both vision and roadmaps, and all too often, we easily have a vision. Most likely, WordPress has not only a project vision, but we also need to gather some team visions to unite those working together. If you were to think of this as an adventure, think of them not as side quests but as storyline quest points that lead to the end point.

Roadmaps get us to delivery, and what we need more of is that right now in WordPress across all areas. They also allow us to start thinking about measuring, but they shouldn’t be where we end the measuring. That is another conversation but an essential one. We are at step one on the path to collectively growing our processes.

June 8, 2025  09:20:00
The episode introduces the show Open Web Conversatioins during the Open Channel FM's rebranding series, featuring insights from builders and innovators on digital identity, emerging technologies, and online creativity, inviting listeners to engage.
June 7, 2025  19:19:18
Photo by Nilo Velez

Over 1,723 attendees from 84 countries gathered at the Messe and Congress Center Basel in Switzerland, and 20,353 more joined online for WordCamp Europe 2025.

I’m personally very excited… There’s so much I want to do. I think there’s a clear pathway to 7.0 and beyond.

Matt Mullenweg, WordPress Cofounder

The flagship WordPress event kicked off in Basel, Switzerland, with a dedicated Contributor Day. It was followed by two days of engaging talks, panels, hands-on workshops, and vibrant community connections. WordPress Cofounder Matt Mullenweg and Executive Director Mary Hubbard joined a diverse lineup of speakers and panelists, sharing insights in the heart of one of Europe’s most charming cities.

Set against the backdrop of Basel’s historic streets and Rhine-side views, the sponsor hall buzzed with activity as companies from across the WordPress ecosystem showcased their latest innovations, offered live demos, and connected with attendees. Each day, participants refueled with a range of local and international cuisine — from Swiss specialties to global favorites — making mealtime a lively space for networking, collaboration, and sparking new ideas.

A Global Gathering in Basel

WordCamp Europe has long been one of the most anticipated WordPress events of the year — a space where community, creativity, and collaboration thrive. This year in Basel, the conference delivered an exciting and diverse program that reached every corner of the WordPress ecosystem.

Here’s what attendees experienced:

  • Engaging Sessions Across Tracks – Across two full days, the conference featured informative talks, captivating keynotes, and dynamic discussions exploring WordPress and the broader web.
  • A Global Speaker Lineup – The stage welcomed 52 speakers from 23 countries across five continents, each bringing unique insights and global perspectives.
  • Wide-Ranging Topics – The schedule included 45 sessions and four hands-on workshops across three tracks, covering:
    • Accessibility and key policy updates like the European Accessibility Act and the Cyber Resilience Act
    • The evolving role of Artificial Intelligence in the open web
    • Cutting-edge web design, development best practices, SEO, and content strategy
    • Real-world case studies and showcases from across the community
  • Hands-On Learning Opportunities – Interactive workshops allowed attendees to roll up their sleeves and develop practical skills in a collaborative setting.
  • A Community Built on Collaboration – Whether developer, designer, content creator, or entrepreneur, every attendee found space to connect, learn, and grow within a vibrant and welcoming community.

Contributor Day

WordCamp Europe began with a vibrant Contributor Day that brought together 640 contributors—including many first-timers—to collaborate, share knowledge, and support the WordPress project. Guided by 33 dedicated table leads, with 21 teams, attendees of all experience levels came together to exchange ideas, solve real challenges, and make meaningful contributions to open source. From accessibility improvements to theme development and translation efforts, every table played a part in moving WordPress forward.

Contributor Day at WordCamp Europe 2025 brought together a mix of first-time and returning contributors across a wide range of teams, from Core and Accessibility to Polyglots, Training, and Community. Attendees tackled everything from onboarding and ticket triage to translating strings, improving documentation, and enhancing tools and workflows. Development-focused teams explored performance and testing improvements and worked through live coding exercises. Meanwhile, accessibility testers, support volunteers, and photo moderators contributed to efforts that directly impact users around the world.

In parallel, teams like Marketing, Meta, Hosting, and Sustainability focused on future-facing initiatives—from promoting WordPress through the Showcase and social media campaigns to refining infrastructure, increasing accessibility, and preparing for long-term project growth. Whether contributing to plugins, themes, documentation, or new contributor experiences, participants reinforced the values that power the WordPress project: collaboration, inclusivity, and openness. The day served as a reminder that WordPress is not just software—it’s a community built by and for everyone.

Tomorrow Starts with WordPress

The first full day of WordCamp Europe 2025 brought the community together to celebrate the power of open source collaboration and innovation. Opening remarks from both global and local event leads reflected on the journey of WordCamp Europe—from its beginnings in 2013 in Leiden, Netherlands, to the vibrant event in Basel today. This full-circle moment underscored the growth of the WordPress community, united by a shared commitment to an open web.

The day launched into an inspiring program with the keynote session, WordPress Without Borders – The Fight for Digital Freedom, delivered by Noel Tock. Drawing from his experiences—including time on the frontlines in Ukraine—Tock illustrated how open source supports global resilience and serves as a digital human right. His message called on contributors to see their work as part of something greater, offering a compelling and forward-looking vision to energize and unify the WordPress community.

From there, the program unfolded across multiple tracks—each one sparking new conversations and insights. One standout session highlighted social entrepreneurship in Bulgaria, where WordPress is helping grassroots organizations drive change in education, journalism, and social justice. Petya Raykovska shared how nonprofits like Teenovator and the Bulgarian Fund for Women are using WordPress to amplify their work and strengthen their communities.

Designers and developers explored ways to improve workflows and collaboration. In Bridging Design and Development, attendees learned how Figma Design Systems can connect design and development through shared structures mapped to block themes. Real-world examples, like the Novus Media Newspaper Design System, demonstrated how scalable, consistent design can power multi-brand platforms.

Workshops played a key role throughout the day, including the interactive Block Developer Cookbook: WCEU 2025 Edition, where attendees worked through community-voted code recipes featuring the latest WordPress APIs. Sessions also dove into emerging technologies, such as Automating WordPress Setup with Modern AI Tools, which showcased how WP-CLI, scripting, and AI can accelerate project setup and reduce repetitive tasks.

Photo by Marc Wieland

Day Two of WordCamp Europe 2025 opened with a focus on the evolving role of the WordPress community in a rapidly changing digital world. Sessions explored how contributors—from local meetup organizers to global advocates—play a vital part in shaping WordPress’s future. Talks on inclusivity, such as Over the Rainbow, encouraged attendees to consider how individual actions can help build a more welcoming, representative open source ecosystem. Throughout the morning, the spirit of collaboration and shared purpose remained front and center.

As the day progressed, attention turned to the tools and technologies pushing WordPress forward. From sessions on scaling multilingual sites and managing observability to hands-on workshops, developers explored new ways to streamline workflows and enhance performance. Highlights included WordPress Gems for Devs, which introduced the Interactivity API through live coding, and Client-side Web AI Agents, a look at cutting-edge browser-based AI that unlocks new possibilities for web experiences. These talks reflected the platform’s growing capacity to adapt to emerging trends while staying true to its open foundations.

The afternoon brought a blend of practical guidance and inspiring stories across tracks. A case study on accessibility from Switzerland showed how thoughtful design can benefit all users, while a session on brand-building for women entrepreneurs highlighted the creative and economic opportunities WordPress enables. With topics spanning content strategy, business growth, regulatory readiness, and more, the second day of WCEU 2025 affirmed the strength of the WordPress ecosystem—not only as a technology platform, but as a global movement fueled by people, purpose, and possibility.

Fireside Chat

As the final day drew to a close, Matt and Mary shared some thoughts on EU regulation (Open Web Alliance), AI, and the introduction of the WordPress AI team, and then answered questions from the audience.

Closing

A heartfelt thank you to the dedicated organizers who brought WordCamp Europe 2025 to life in Basel, the speakers who shared their insights, the attendees who joined us in person, and those who followed along from afar. We hope you leave with fresh ideas, meaningful connections, and renewed energy to help shape the future of the open web.

Be sure to mark your calendars for the final major WordPress events in 2025: WordCamp US (Portland, Oregon, USA). Then join us in Kraków, Poland for WordCamp Europe 2026! Also, if you want to get involved with WCEU, the call for organisers is already open for 2026.

June 7, 2025  13:18:58

From May 24th to 25th, 2025, we had the fourth annual WordCamp Jinja at the largest educational institution in the region Jinja Senior Secondary School. This year’s event was our biggest and most impactful yet both in numbers and key demographics, having over 250 attendees and participants that primarily included students as well as developers, designers, bloggers, educators, and entrepreneurs from across Uganda and East Africa.

With the theme “Create, Impact, and Explore with WordPress!”, the event was a celebration of open-source innovation, practical skills, and community spirit, all set against the stunning backdrop of the Nile.

A WordCamp Designed for Student WordPressers, Developers and Creatives Alike

Students were at the heart of WordCamp Jinja 2025, reflecting their role as a key and growing demographic in both the WordPress Jinja community and the wider Ugandan community. This year’s venue Jinja Senior Secondary School—was purposefully chosen to bring the WordPress experience closer to students, ensuring greater accessibility, relevance, and impact.

We welcomed enthusiastic participation from students of Jinja SS, Makerere University, Macedonian Vocational School, Ezone School of Computing, and others. For most, it was their first exposure to open-source tools, and the excitement was palpable. At Jinja SS, the event left a lasting impression—inspiring students to launch their very own ICT Club to continue learning and collaborating long after the event, thus we left a standing souvenir at the school.

As a community, we are intentional about balancing engagement between our student and creative/developer communities. We do this by alternating venues each year to better suit both these key groups and demographics, whether it’s schools, colleges or innovation hubs. We are excited to continue our outreach programs and student-focused initiatives at both Jinja Senior Secondary School and Macedonian Vocational School among other schools, nurturing future WordPress contributors, creators, and tech leaders as well as having creative and developer oriented meetups and next-gen events.

Diverse Speaker Sessions

Attendees enjoyed powerful sessions across two tracks led by speakers from Uganda, Kenya, Rwanda, USA, and beyond. Talks covered everything from advanced contributions, development and accessibility to blogging, diversity, SEO, and AI tools for content creators—sparking learning, inspiration, and engagement throughout the event.

Contributor Day sessions and Website Hackathon Track

Teams collaborated in a WordPress Website Hackathon, that we have been holding each year, building websites for NGOs, community initiatives, and personal projects—all powered by WordPress. It was an energetic, purpose-driven space where learning met real-world impact.

Throughout the event during the hackathon track and culminating on May 25th, participants joined the global open-source movement through the Contributor Day and sessions. From learning how to translate and reviewing content to contributing to the WordPress Photos and Polyglots teams, attendees learned how to give back and make an impact in the WordPress ecosystem.

After-Party on the Nile

The event concluded with an unforgettable after-party at the Source of the Nile, where participants networked, shared stories, and reflected on two days of community connection and creative exploration. The boat ride to the source of the Nile closed off such an eventful experience.

Thank You!

We are deeply grateful to:

  • Our over 250+ attendees and participants especially all the students for bringing their energy and enthusiasm for learning
  • Our amazing speakers and workshop facilitators
  • Our sponsors and partners for their generous support
  • Our volunteers who made everything run smoothly

Your commitment and passion made this year’s WordCamp Jinja the biggest and most impactful yet!

What Next

Don’t forget to follow @WordPressJinja for continued updates.

Uganda is one of the places with the highest turnover of WordPress events and a vibrant, supportive, and passionate WordPress community with over 8 WordPress events a year. Including Next Gens and Do Actions. Next inline is the Uganda Websites Projects Competition on 20th June 2025 and WordCamp Masaka on 18th and 19th July 2025 with more to follow in the coming months.

Remember to join our WordPress Jinja Meetup community for timely updates as well. We can’t wait to welcome you to all WordPress Jinja meetups, creative and developer centric next-gen events and WordCamp Jinja 2026 — which shall be even bigger and more impactful, let’s continue to create, impact, and explore together with WordPress!

June 7, 2025  10:19:32
An update to our changelog for OpenChannels.fm 6.0
June 7, 2025  08:45:03

June 9, 2025: The YouTube embed at the end of this post was hanged to the upload of the specific talk mentioned instead of the Day 1 – Track 1 live stream.
June 10, 2025: The photo credit has been updated to include the photographer’s name and linking to the source instead of Twitter.


There’s been growing debate recently about whether WordCamps have lost their value and relevance. Some argue that attendees rarely share meaningful takeaways afterward, and question whether the talks are impactful enough to provide real learning. They suggest that many people attend only for the travel, social events, and parties. While there may be some truth to these points for certain individuals, I don’t believe this is a fair or accurate generalization.

There are certainly areas where WordCamps could improve. But there are also aspects that stand out as exceptional. They bring together people from around the world and across all walks of life. They celebrate the four freedoms of the GPL and the core ideals that make open source meaningful. And they use the opportunity of being together in person to rally around the shared mission of democratizing publishing.

But like anything in life, these events are only as good the mindset you approach them with.

Meaningful Impact of Open Source Software

Yesterday’s keynote at WordCamp Europe struck a deep chord with me. In WordPress without Borders — The Fight for Digital Freedom, Noel Tock spoke about his personal experiences in war-torn Ukraine. Through his non-profit, Dog Help Kharkiv, he works to evacuate dogs from the frontlines before finding them safe, loving homes.

He witnessed how the open web enables life-changing work first-hand. Ukranian organizations are reuniting families or literally changing and saving lives. These initiatives were made possible thanks in part to the work we all do building and maintaining the WordPress software powering tens of millions of websites.

What a powerful reality made possible by the ideals of Open Source.

Sharing Our Stories

While stories at the severe end of the spectrum like these are (hopefully) rare, there’s no shortage of instances where the impact of the software we maintain is life changing. But why is it so hard to find them? It’s not because they don’t exist. The people living these stories are just busy doing the actual work: fundraising, helping others, managing the demands of everyday life, and running their businesses.

WordCamps are more than just conferences. They are moments of connection, reflection, and renewal for a global community working toward something bigger than ourselves. The value is not always in the slides or the swag, but in the relationships formed, the perspectives expanded, and the stories shared. But they’re also an opportunity to share our own stories.

If we want WordCamps to improve, we have to show up with purpose. Attend the talks, ask thoughtful questions, introduce yourself to someone new, and share what you learn. Most importantly, we need to be more intentional about sharing the stories that matter.

When we tell stories about a simple blog that helps reunite a family, or a one-page fundraising site that powers a grassroots rescue effort, we remind ourselves why this work is meaningful. These are not outliers. WordPress is designed to be stable, extensible, and accessible so that anyone can build with confidence. And what they build can change lives.

To make WordCamps better, we must make space for stories like these. Seek them out, listen to them, and share them. When we do, we not only rediscover purpose in our work, we also learn from the people who use what we build. But we don’t have to wait for a WordCamp to do this. Reach out. Tell someone how their work has impacted your community, your family, or your life.

As I highlighted in the talk I gave yesterday, every line matters.

Watch the Replay

Featured image credit: CC0 licensed photo by annezazu from the WordPress Photo Directory.

The post The Impact of Open Source Work appeared first on Jonathan Desrosiers.

June 7, 2025  06:30:00
BobWP updates listeners on the evolution of "Do the Woo," a podcast focused on WooCommerce. It features diverse hosts and segments, catering to all experience levels.
June 6, 2025  16:21:02

I just left the stage in Basel after giving my talk at WordCamp Europe. I am really happy with how it turned out, and I hope others found it insightful. There are some points that have stuck with me that I plan to dive into a bit deeper here on my blog in the coming weeks.

Further Reading

In my session, I covered how the WordPress philosophies and other Open Source decision making frameworks apply to evaluating suggested changes as a Core Committer. If you found yourself wanting to learn more, the philosophies of the WordPress project are largely adapted from some essays by Havoc Pennington.

These concepts are also detailed in Producing Open Source Software: How to Run a Successful Free Software Project by Karl Fogel. My talk submissions are sometimes a way to promote exploring a subject that I am interested in more deeply. While I use the concepts in this talk at depth every time I work on WordPress, this was definitely one of those cases (I’ve had the paperback version of Fogel’s book on my desk for longer than I’d like to admit).

WordPress Lead Developer Andrew Nacin also expanded on the topic a bit in his The qualities of a great WordPress contributor post on his blog.

Watch the Replay

If you missed my talk live, you can watch the replay of the live stream. I’ve included it below and set the video to start when I took the stage.

Slide Deck

And here’s my slide deck if you wish to follow along.

The post How a Core Committer Thinks: Making Decisions for Millions appeared first on Jonathan Desrosiers.

June 6, 2025  08:55:00
Do the Woo has rebranded as OpenChannels.fm, expanding its podcast community to cover various aspects of the open web, while still celebrating WooCommerce as a core focus. It's all about diverse voices.
June 6, 2025  06:00:00
So, the podcast "Do the Woo" is now "OpenChannels.fm"! It’s a cool rebrand to reflect their broader focus on WordPress and open web topics, while still keeping the WooCommerce content. Exciting changes ahead.