Justine Allen's Blog, page 13
October 9, 2024
Hot Off the Press: New WordPress.com Themes for October 2024
Want to give your website a fresh new look? This month, we’re showcasing four new themes designed by the WordPress.com theme team for personal portfolios, creative projects, startups, and podcasting. These new designs are both beautiful and functional, sharing a focus on setting your work, business, or podcast apart.
As a reminder, you can access a range of beautiful premium themes on the Personal plan and above, or you can even add your own third-party themes with the Business and Commerce plans. So it’s worth taking a look at the WordPress.com hosting plans and checking out all available themes in case there’s an even better fit for your site.
Let’s take a closer look at this month’s featured themes:
Dossier
Dossier brings a sophisticated, minimalist design to your site, making it perfect for professionals looking to showcase their skills and accomplishments. The theme emphasizes clean typography and ample white space, creating an elegant digital portfolio or resume. With customizable sections for projects, skills, and testimonials, Dossier puts your work front and center with a polished, modern layout.
StartOrg
StartOrg is designed for nonprofits, startups, and organizations looking to make a strong impression. The theme’s structured layout, vibrant accent colors, and intuitive design help you communicate your mission, highlight team members, and share updates. Whether you’re showcasing research, community projects, or educational programs, StartOrg’s versatile sections make it easy to connect with your audience and grow your reach.
Impressionist
Inspired by the Impressionist art movement, this theme offers a refined space for visual storytelling. With a minimalist layout, delicate typography, and emphasis on white space, Impressionist is ideal for showcasing artwork or creative content. The design draws from the aesthetics of an art gallery, allowing your visuals to take center stage. For artists, designers, and historians, Impressionist provides a beautiful online gallery to exhibit your creations.
Podbase
Podbase is designed specifically for podcasters who want a sleek, modern platform to host their episodes. Its dark theme with vibrant accents highlights podcast cover art and episode descriptions, creating a visually engaging experience. Integrated features like an audio player, episode lists, and subscription buttons make it easy for listeners to navigate your content. Podbase is a great choice for podcasters looking to build a dedicated following with a professional theme that reflects the quality of their content.
Ready to give your site a makeover? Try any of these themes on for size by clicking the Demo button on each theme page to see which one speaks to you. Whether you’re showcasing professional achievements, building a community, sharing artistic creations, or launching a podcast, you might just find the perfect starting point with one of these themes.
Most premium themes are available to use at no extra charge for customers on the Personal plan or above. Partner themes are third-party products that can be purchased for $99/year each on the Business or Commerce plans, so if you haven’t found what you’re looking for today, there are plenty of alternatives available.
You can explore all of our themes by navigating to the “Themes” page, which is found under “Appearance” in the left-side menu of your WordPress.com dashboard. Or you can click the button below:
Explore all WordPress.com themesOctober 3, 2024
Building Studio in Public: How Open Source Collaboration Enhances Studio
It’s now time for Part 3 of our “Building Studio in Public” series! In today’s post, we’ll explore how the Studio app connects with other open source projects, with a focus on its key relationship with WordPress Playground. We’ll also dive into the benefits and challenges of this symbiotic relationship, showing how both projects mutually benefit from improvements and bug fixes.
If you’re following the series, be sure to check out past posts:
Using WordPress Components and Tailwind CSS in our Local Development App.Maintaining High Performance in Our Local Development App for Enhanced UXAs a reminder, Studio is our free and open source local WordPress development app.
Download Studio for freeHow Studio connects to other open source projectsStudio relies on various open source projects, with the primary one being WordPress Playground which provides a local WordPress server, handling everything from running PHP code to serving static files and managing a database. This allows developers to test WordPress sites, plugins, and themes in a local, sandboxed environment.
WordPress Playground utilizes Emscripten to compile the PHP interpreter to WebAssembly, enabling PHP to run in the browser and other platforms—a significant leap for WordPress development.

By way of WordPress Playground, Studio also makes use of other open source tools like the SQLite integration plugin.
Studio itself is open source, which means the codebase is available for review, contribution, and forking by the community. This openness fosters collaboration, encourages innovation, and enables rapid identification and resolution of issues.
Because of the open source nature of Studio and the projects it uses like WordPress Playground, we are not blocked by missing or undesired behavior of our libraries but can instead help uncover issues or opportunities for enhancement in these projects and contribute the necessary fixes and improvements. Instead of building workarounds, we can directly enhance Studio’s performance and capabilities by submitting fixes to the actual problems.
This creates a virtuous cycle of improvement, showcasing how open source collaboration drives innovation and helps solve complex challenges.
Challenges we discovered working with WordPress PlaygroundWordPress Playground is powerful, but since it makes WordPress run in an unusual environment–the browser instead of a server–some things work differently than developers expect. While using it to power Studio allows us to achieve all the good things, like a fast setup, we also had to overcome some challenges:
Cross-platform compatibility: Ensuring that WordPress Playground runs smoothly on different operating systems (Windows, macOS, Linux) and across browsers requires extensive testing and fine-tuning.Performance: Managing multiple resources (PHP interpreter, WordPress site, database, and file system) while running multiple sites in Studio can strain performance. You can learn more about how we maintain high performance in Studio here.Plugin and theme compatibility: Although WordPress Playground creates a full environment for running sites, some plugins and themes rely on extensions that are not included in WordPress Playground by default. Adjustments are often necessary to accommodate support for the different plugins and themes.
Database handling: WordPress Playground uses an SQLite database instead of MySQL, fundamentally altering how WordPress operates. This shift requires adaptations for database queries and compatibility with plugins and themes.
These complexities sometimes lead to incompatibilities, bugs, or performance issues. However, we believe the benefits of WordPress Playground far outweigh the challenges, and we are committed to addressing them by contributing to the Playground project. Thus not only Studio works better, but everyone who uses Playground has a better experience.
In turn, Studio also benefits from contributions from other Playground users.
Our recent contributions to WordPress Playground and other open source projectsAs part of our contributions to the Studio app, we recently focused on improving the compatibility of plugins, themes, and workflows in sites. The following are some of the fixes we made that contributed to the projects.
MySQL database compatibilityWith a pull request, we helped improve the compatibility of sites connecting to MySQL databases, making Studio more flexible in handling various site configurations and expanding its capability to support more diverse WordPress setups.
Symlink supportWe submitted two contributions (PR 1, PR 2) to add crucial support for handling symlinks in sites, greatly improving file system compatibility and flexibility. This enhancement significantly improves the development workflow, enabling developers to maintain cleaner project structures and more efficiently manage their themes and plugins across multiple projects. It also facilitates easier version control and collaboration by allowing links to external repositories without duplicating files.
Windows media upload fixA fix resolved critical issues with uploading media on sites when using the Windows version of the Studio app, ensuring a smoother experience for Windows users. This contribution addressed a significant functionality gap, ensuring that Studio provides a consistent and reliable media management experience across all supported operating systems.
WordPress core and extension upgradesAnother contribution fixed the process of upgrading versions of WordPress, plugins, and themes. This improvement streamlined the update process within Studio, allowing developers to maintain their WordPress installations and associated extensions easily.
WooCommerce compatibilityThis pull request significantly improved compatibility with the WooCommerce plugin, expanding Studio’s utility for e-commerce development. This contribution addressed specific database queries and operations that were incompatible with the SQLite database used in sites created with Studio. The SQLite integration plugin involves different complexities to allow seamless integration with the WordPress ecosystem, and this contribution addresses one of the main pain points of using WooCommerce in local WordPress environments.
cURL extension compatibilityWe contributed the ability to enable the cURL extension on PHP used with Playground which turned out to be a requirement by a significant number of plugins for external API calls or remote data fetching. This broadens the range of plugins that can be used effectively within Studio and WordPress Playground.
File creation compatibilityA fix improved compatibility with plugins that create files using umask to set file permissions, enhancing the file system operations. This was crucial for plugins that generate caches, create custom CSS or JavaScript files, or manage uploads in non-standard ways. By resolving these file operation issues, we ensured that a broader range of plugins could function correctly within Studio, providing a more accurate representation of how sites would behave in a production environment.
All the above examples demonstrate how collaborative contributions help Studio evolve, making it more compatible with the vast array of plugins and themes in the WordPress ecosystem.

If this post has inspired you to contribute to open source projects (we’re big fans), here’s how you can get involved with some of our favorite open source projects:
Contribute to the Studio app projectContribute to the WordPress Playground projectContribute to the WordPress projectTogether we can build incredible tools for the community!
If this information has piqued your interest, or if you’re developing WordPress sites, start leveraging the power of Studio today. It’s free, it’s open source, and it seamlessly integrates into your development workflow.
Download Studio for freeAfter downloading Studio, connect it to your WordPress.com account (free or paid) to unlock features like Demo Sites.
September 30, 2024
The Future of the Social Web Is in Good Hands
Social media, in its current form, is broken and chaotic. A new organization, the Social Web Foundation, aims to change that. This initiative has launched with a clear mission: fuel the growth of the fediverse and make the social web a better place for everyone.
Automattic, WordPress.com’s parent company, is excited to be part of this movement and to support the Foundation’s vision for a healthier, more diverse social web.
What is the Social Web Foundation?Founded by leaders in the open social networking space, including Evan Prodromou, Tom Coates, and Mallory Knodel, the Social Web Foundation is focused on fostering a financially sustainable, decentralized social web. It will empower users and creators by enhancing platform diversity, encouraging innovation, and promoting user safety across the fediverse.
The Social Web Foundation’s immediate focus is on building the infrastructure needed to connect users and developers across platforms. The Foundation will also work to educate the public, policymakers, and developers about the benefits of the fediverse while continuing to improve the ActivityPub protocol and the tools that power it.
Automattic’s role in supporting the Social Web FoundationAutomattic has a long history of championing open source software and open standards, and we believe the fediverse plays a critical role in shaping the future of the web. That’s why Automattic is eager to collaborate with the Social Web Foundation to ensure a stronger, more open ecosystem for all users.
Matthias Pfefferle, Open Web Lead at Automattic, said, “We’re excited about the launch of the Social Web Foundation and its mission. We’re eager to collaborate with the Foundation to expand platform diversity and enhance the support for various content types—especially long-form content—within the fediverse, fostering greater interoperability across the ecosystem.”
Alongside Automattic, companies like Mastodon, Flipboard, Ghost, and Meta have expressed their support for the Foundation’s mission. As Eugen Rochko, Founder and CEO of Mastodon, states, “Mastodon is committed to the fediverse and proud to back the Social Web Foundation’s efforts to build a stronger, more open, and dynamic social web for all.”
Federating WordPress.com with ActivityPubFor creators using WordPress.com, there’s already an easy way to join the fediverse. The ActivityPub plugin federates your WordPress.com site, allowing readers on other fediverse platforms like Mastodon and Pixelfed to follow your site directly. This integration gives creators even more control and reach, offering a seamless way to distribute content across multiple networks while maintaining ownership of what you publish.
Why this mattersAs the Social Web Foundation builds out its program, Automattic and WordPress.com are proud to be part of the next wave of social networking. The ability to control your own data, interact across platforms, and have a say in the future of the social web aligns perfectly with our own values as an organization dedicated to empowering creators and users worldwide. And with the ActivityPub plugin, WordPress.com users can easily join in, helping to build a more open and federated web.
To learn more about the Social Web Foundation, visit their website, or follow them at @swf on the fediverse.
Also be sure to catch up on all things fediverse with our five-part YouTube series, The Fediverse Files.
September 26, 2024
Our Contributions Towards a Stronger Open Source Future
As an open source project, the WordPress software relies on contributions from individuals and businesses alike to remain a healthy and innovative ecosystem.
Individuals can contribute in a number of ways, from writing code to organizing meetups to working on WordPress’s accessibility. Companies can contribute by permitting their employees to allocate part-time or full-time hours to WordPress.
For the latest WordPress release Automattic provided over 3,500 core contributions—over half of all WordPress 6.6 contributions—at the hands of 105 individual contributors.


Given that WordPress powers over 40% of your favorite websites, it’s in the best interest of every company that benefits from WordPress to give back to the project and community.
This idea is codified in WordPress’s Five for the Future initiative. Any company that profits from the software—including every business offering hosting for WordPress—is encouraged to put 5% of its resources back into WordPress development.
At Automattic, the parent company of WordPress.com, we take this responsibility very seriously.
Automattic employs just under 2,000 people. Over 100 of them work on the WordPress project full-time. In terms of workforce hours, this puts the company at almost exactly 5%.

Contributor day at WordCamp Europe 2024.
Though this is not a requirement and it is not policed by the WordPress Foundation, every company that profits from WordPress should think about the long-term health and vibrancy of the WordPress ecosystem. At Automattic and WordPress.com, we’re proud to give back and to constantly be thinking about bettering WordPress as a whole when we’re working on features, squashing bugs, and generally doing our best to democratize publishing for the entire world.
As a customer—whether you’re a developer at an agency or an aspiring creator—you have a say in the future of WordPress. You have options when it comes to hosting. We recommend that the dollars you spend go towards a WordPress host that acts as a good steward of open source philosophy—like WordPress.com.
Get started with WordPress.comSeptember 24, 2024
Hot Off the Press: New WordPress.com Themes for September 2024
The WordPress.com team is always working on new design ideas to bring your website to life. Check out the latest themes in our library, including great options for brats, foodies, and beauty bloggers. Take a look below.
All WordPress.com ThemesPartygurl
Tap into your brat summer vibes all year round with our brand new Partygurl theme. Inspired by the now-iconic bright green and simple typography from Charli XCX’s Brat album, this styling will immediately identify you as someone who’s done with the “clean and polished” aesthetic of sameness that you see across the web.
Click here to view a demo of this theme.
RecipeBook
RecipeBook is a warm, vibrant theme made for foodie content creators who want their recipes to shine. Inspired by the charm of old-school cookbooks, RecipeBook pairs eye-catching colors with bold typography. The homepage invites discovery with a handy category list and flexible Query Loop block, making it easy to showcase your culinary creations. Whether you’re sharing recipes or creating food collections, RecipeBook offers a playful yet functional design to help you dish out your passion for cooking.
Click here to view a demo of this theme.
Goodskin
Goodskin is a great theme for beauty bloggers and skincare enthusiasts. With its light, calming aesthetic and clean layout, Goodskin provides an elegant space for sharing your routines, product reviews, and more. The theme includes thoughtful features like a sidebar for easy navigation and a product rating pattern to highlight your favorite finds. Available in three soothing color variations—Jojoba, Blush, and Eyeshadow—Goodskin offers a serene, sophisticated platform that allows your content to glow.
Click here to view a demo of this theme.
Luxus
Luxus is the perfect look for beauty salons wanting to make a sleek, no-fuss impression. Designed with simplicity in mind, Luxus gives the essentials—services, location, hours, and contact information—right away on the homepage, making it easy for clients to find what they need.
Optimized for mobile right out of the box with a clean, single-column layout, Luxus offers a seamless experience for your busy, on-the-go clientele. With the luxurious Ojuju font for headings and the classic Hanken Grotesk for body text, this theme exudes elegance while keeping the focus on what matters most.
Click here to view a demo of this theme.
To install any of the above themes, click the name of the theme you like, which brings you right to the installation page. Then click the “Activate this design” button. You can also click “Open live demo,” which brings up a clickable, scrollable version of the theme for you to preview.
Premium themes are available to use at no extra charge for customers on the Personal plan or above. Partner themes are third-party products that can be purchased for $99/year each on the Business plan and above.
You can explore all of our themes by navigating to the “Themes” page, which is found under “Appearance” in the left-side menu of your WordPress.com dashboard. Or you can click below:
All WordPress.com ThemesSeptember 19, 2024
Democratizing Core Contributions: A Guide to WordPress.org Badges
WordPress is an open source project, meaning anyone can contribute to the software, regardless of skill level. You probably first think of writing code, but it goes beyond that: whether you’re submitting patches, translating content, or organizing events, your contributions matter and are essential to the ongoing success of the WordPress project.
This collective effort ensures WordPress remains accessible, secure, and innovative. Plus, it’s a chance to work alongside passionate individuals who share a love for WordPress and the open web.
When you contribute, you not only get that warm fuzzy feeling that comes with giving back, but you also get a virtual badge on your WordPress.org profile. Today’s post is going to explore the ins and outs of these meaningful additions to your WordPress C.V.
What are WordPress.org profile badges?In the WordPress community, badges aren’t just for scouts—they’re symbols of contributors’ dedication to the power of the open web and professional achievement. No matter your role in the WordPress ecosystem, profile badges highlight your contributions to the open source project that powers over 40% of the web.
If you’ve been part of the WordPress open source project in any capacity, you have a WordPress.org profile that looks something like this (you can find Daniel’s, which is pictured below, here: https://profiles.wordpress.org/danielbachhuber):

Note: this is your WordPress.org profile, not your WordPress.com profile.
What may be different about your own profile are all those cool badges—or lack thereof. If you don’t have (m)any, you’re probably thinking, “Those are cool! How do I get those?”
Think of these badges as your WordPress resume. They are visual markers that help showcase your contributions to the core WordPress project. As you can see, these badges appear on your WordPress.org profile, giving others a glimpse into your involvement and expertise.
Badges are earned for a number of contribution types—in fact, there are 30 different badges you can show off. Whether you’re writing code, answering questions in the forums, helping translate WordPress into other languages, or organizing meetups and WordCamps, there’s a badge for nearly every type of contribution.
Beyond just being a fun visual, though, profile badges are a way to build your reputation within the WordPress ecosystem and signal to others that you’re an engaged, knowledgeable, and reliable member of the community.
Why badges matterProfile badges are more than just digital stickers—they come with a few tangible benefits:
Get recognized for your efforts: Whether you’re a plugin developer or an accessibility contributor, badges are a public way of being recognized for your hard work. It’s a way for the community to say, “Thank you!” Build credibility: If your career is related to WordPress, your badges are a symbol of your expertise and commitment. Potential clients or hiring managers can see your dedication to the platform, which can set you apart from other providers or job candidates.Increase your networking opportunities: Badges can also serve as a way to connect with others who share similar interests. If you’re active in the WordPress community, your badges show that you’re invested, making it easier to forge connections with others who are just as passionate.Badges are a reflection of your journey within the WordPress community.

All the possible WordPress.org profile badges.
How to earn WordPress.org profile badgesEarning WordPress badges is all about getting involved. All you need to do is create your profile (if you haven’t already) and start contributing. Here’s a breakdown of some common badges and how you can earn them:
1. Core ContributorThe Core Contributor badge is awarded to those who contribute directly to WordPress Core. This can include submitting code patches, testing new features, or reporting bugs during development cycles.
To earn this badge, you don’t have to be a coding wizard—there are plenty of ways to contribute to WordPress core, even if you’re just getting started with development. Testing, providing feedback, and reporting bugs are all valuable contributions that can help you earn this badge.
2. Meetup OrganizerIf you’re passionate about building local WordPress communities, organizing a meetup is a great way to get involved. To earn this badge, you’ll need to officially register your meetup group through WordPress.org and organize regular events. It’s a fantastic way to contribute to the community and make connections with fellow WordPressers in your area.
Don’t forget about WordPress.com’s free hosting offer for any local meetup website.
3. AccessibilityThis badge is awarded to contributors who help ensure that WordPress remains inclusive and usable for everyone. Work in this area includes testing themes and plugins for accessibility compliance, contributing code that improves accessibility features, and helping write documentation and best practices. Your efforts here make WordPress more user-friendly for all. By working towards this badge, you’re playing a crucial role in making the web a more accessible place, one improvement at a time.
4. Polyglots (Translation)WordPress is a global platform, and the Polyglots team is responsible for translating it into hundreds of languages. If you’re multilingual, contributing to translations is an incredibly valuable way to give back to the community.
To earn this badge, you can join the Polyglots team and start translating WordPress Core, themes, and plugins into your native language. Every contribution counts, whether it’s a single string or an entire project.
5. SupportThe WordPress support forums are a lifeline for users around the world, and those who actively help others solve their WordPress problems can earn the Support badge. Whether you’re answering questions, providing advice, or sharing your knowledge, this badge is for those who make the forums a valuable resource.
Earning this badge is simple: Get involved in the support forums and help other users navigate their WordPress questions.
This is just a sampling of what’s available. Remember, there are 30 total badges to earn!
Show your commitment to the WordPress communityWhile digital trophies are fun and all, WordPress.org profile badges are more than that—they’re a visual and visible reflection of your commitment to the WordPress community and open source project. No matter the type of contribution you’ve made, every badge tells a story of how you have helped make WordPress what it is today.
Whether you have one badge or all thirty, every contribution pathway is meaningful. Make it your own and go deep, go wide, or do both in contributing to this one-of-a-kind project and community.
No matter your skill level, there’s always more to do in this grand quest of democratizing publishing for the entire world. Get involved, make a difference, and show off your badges with pride.
September 17, 2024
Open Enrollment at WordPress.com: Free Websites for Students
Your online presence is paramount to the success and well-being of your future self. Whether it’s for sharing your latest creative project, building an impressive portfolio, or simply expressing your ideas, owning a personal website gives you the power to control your online identity. It’s a space where you can showcase your work, share your story, and set yourself apart in a sea of digital noise.
A simple website can, in fact, change the world.
You are the future of the webAt WordPress.com, we know that students are at the forefront of driving online culture. Michael Dell founded Dell while he was a student at the University of Texas. Google came to life when Larry and Sergey were at Stanford. Mark Zuckerberg was 19 when he started Facebook. We could keep going.
To kickstart your own world-changing ideas, we want to give you a free website.
Starting this week, university students can get a free Premium WordPress.com website for one year. We’re offering this opportunity to the first 1,000 students who sign up.
Get your free websiteInvesting in yourself—here’s what you get with a WordPress.com premium planA website is more than a tool. It’s an investment in your future. As the job market becomes increasingly competitive, having an online space where you can display your work, write about your passions, and connect with like-minded people is invaluable. From resumes to portfolios to blogs, your WordPress.com site will grow as you do.
Here’s what’s included when you take advantage of this free website offer:
Free custom domain name for the first year: Choose a personalized domain that reflects your identity.Premium themes: Kickstart your site with professionally designed, fully customizable templates.13 GB of storage: Plenty of room to host your photos, videos, and other media, with ownership that’s entirely yours.SSL certificate: Your site is secure and protected by industry-standard encryption.Ad-free experience: Build and manage your site without ads distracting your visitors.No matter what you’re creating, WordPress.com’s Premium plan gives you all the tools you need to succeed.
How to secure your free websiteHere’s how you can grab this amazing deal:
Submit the interest form ASAP : Head over to our campaign landing page and fill out the form with your details. Be quick—only the first 1,000 students will get the free site!Verify your student status: After you’ve submitted the form, you’ll receive an email asking you to verify your student status through VerifyPass. This step ensures that our offer goes to real students.Claim your free website: Once your student status is verified, you’ll receive a unique coupon code that allows you to create a new Premium plan website for free.Build your site: Choose your domain, select a theme, and start building!This offer is perfect for students looking to stand out in their personal and professional journeys. Don’t miss out on this chance to create a space that’s truly your own.
Get started right awayHaving your own website is a game-changer in an online world increasingly controlled by social media algorithms. You’ll stand out by breaking the mold and announcing yourself as an individual, unmoved by the platform of the moment.
WordPress.com is here to help you take that leap.
Take control of your digital identity. Sign up now and claim your free website while spots are still open!
Get your free websiteSeptember 16, 2024
Connect With More Clients: Our Partner Directory Has Arrived
Since we launched the Automattic for Agencies program earlier this summer, we’ve helped agencies save thousands of dollars and countless developer hours.
Today, we’re making it easier than ever for agencies to connect with potential clients by presenting the new WordPress.com Partner Directory. This directory lists top-tier agencies for our customers who are looking for a partner for their web development projects.
If your agency’s growth is top of mind, there’s no better time to join Automattic for Agencies. In addition to saving time and money, your company could be eligible for a listing in our official partner directory, paving the way for more qualified leads and, ultimately, happy clients.
Get your agency in front of eager customersWhen someone needs a professional website, it can be hard to find the right agency to work with. Sifting through search engine results and going through credentials takes a lot of time and energy, which can leave them exhausted before they even get to your digital door. With the launch of the partner directory, we’re making it easier for consumers to find and connect with vetted, talented agencies—like yours.
When you apply to the agency directory, your application will be reviewed to assess critical areas like security, performance, and adherence to different business requirements. Accepted agencies can showcase their profile across the Woo, Jetpack, and Pressable brand directories via a single listing.
Visit our knowledge base for information about detailed application steps and criteria for inclusion as well as agency tiering and benefits .
Join Automattic for Agencies todayIn addition to our curated directory, the Automattic for Agencies program brings together powerful hosting and a professional suite of plugins and tools in a flexible platform that allows your team to focus on building beautiful and functional websites.
At its core, Automattic for Agencies allows for the bulk purchasing and reselling of WordPress.com hosting plans (along with WooCommerce and Jetpack plugins). Our platform also equips you with direct referrals and invoicing, license management, and monitoring tools to assess security and performance needs across all your sites.
As an added bonus, Automattic for Agencies gives your agency access to volume discounts for your clients. Your first WordPress.com site starts at $30 per month; but with ten or more sites, the price drops to just $10 per site, per month. (All WordPress.com sites purchased through the agency program are on our powerful Business plan.)
Those savings coupled with our referral incentives make Automattic for Agencies a potent combination for growing your agency’s offerings and profitability.
Get started today and connect with new clientsUltimately, our goal is to funnel more business your way, so that you can keep doing what you do best.
Join Automattic for AgenciesSeptember 13, 2024
How to Connect Your WordPress Site to the Fediverse
You created your website for a reason. Whether it’s showing off your art, passing on family recipes, or selling boutique high-performance yo-yos. (That may or may not be Doc Pop’s example.) You created your website to reach an audience and to communicate directly with that audience.
Wouldn’t it be great if there was an easier way for you to connect with them and make it easier for them to follow you and engage with your content online? In this final episode of the Fediverse Files, Doc Pop walks you through how to connect your WordPress site to the Fediverse using ActivityPub.
Federate your website today and get 25% off a WordPress.com Business or Commerce hosting plan by using coupon code federate25—or click below:
Get your 25% offSeptember 10, 2024
WordPress.com and Developers: Roadmap Update
When I stepped in to run WordPress.com while Automattic CEO Matt Mullenweg was on sabbatical, my mission was to make WordPress.com the best and fastest host for WordPress developers and agencies. We cheekily called this initiative “Developers, Developers, Developers,” a reference to a certain point in tech history (wink wink, nudge nudge).
Since then, we’ve shipped a number of developer-focused features like GitHub deployments, a full hosting dashboard, and Studio, an open source local development environment. It’s been awesome to see the feedback rolling in:
WordPress.com has been crucial to my agency’s growth. Its intuitive UI allows me to quickly create sleek, functional websites for my clients, and their reliable hosting and support enable me to rest easy, knowing my sites are in good hands. —Brian Lalli, President @ moonrooster.com
WordPress.com really stands out with its exceptional performance and strong security. It’s a versatile platform that’s great for users at any skill level, and their support team is always incredibly helpful. For managed sites, we definitely think WordPress.com is the way to go. —Sonia Gaballa, Partner @ nudge.design
We aimed to provide clients with a reliable hosting service we could endorse without hesitation, ultimately resulting in satisfied clients. We found that service with WordPress.com. —Ajit Bohra, Founder @ lubus.in
As we round the corner into the final quarter of 2024, I’d like to offer a sneak peek into three themes guiding our work: performance, augmentation, and workflows. We hope you’re just as excited about them as we are, and we welcome you to join us in the journey by testing and providing feedback.
Answers for the age-old question: “Why is my site slow?”
WordPress sites should be fast, and it’s not always an easy thing.
When writing custom code, incorporating third-party libraries, or inheriting an existing site, it can be difficult to track down what’s causing poor performance and low scores. Is it a certain plugin, large photo sizes, slow code, or a combination of the three?
Our upcoming speed test tool innovates upon existing approaches to offer a set of performance recommendations tailored to your unique WordPress site. It will be totally free to use, and you’ll be able to sign up for regular updates. These notifications will come in handy as you change plugins, properly size photos, and optimize code because you’ll be alerted if anything changes unexpectedly.
In the not-so-distant future, the speed test tool will also be directly integrated into your WordPress.com dashboard. You’ll be able to see your performance across all of your sites, and better understand correlations between site changes and performance.
Interested in a free site performance consultation? Connect with me on LinkedIn or Twitter / X and I’d be happy to give you a demo!
Giving developers cybernetic powers
Large Language Models (LLMs) are transforming all types of knowledge work. Was that sentence written by me or ChatGPT? You’ll never know!
At WordPress.com, we think of LLMs as a powerful way to augment developers’ work and give them superhuman-like powers. They’re great at doing things for people—writing blog post outlines, generating code, and creating images—but we think they’re also great for teaching and educating.
As one practical example, Studio is getting an AI assistant. The Studio Assistant is trained on WordPress-specific documentation and has access to a bunch of context about your site. When you ask it for help, like “update all my plugins using WP-CLI,” it will put together an answer based on your site specs as well as provide an explanation for the answer.
Download Studio for free today, connect your WordPress.com account (free or paid), and hit me up on on LinkedIn or Twitter / X to get a sneak peek!
Speeding up your daily grind
When you’re developing on an open source platform like WordPress, there are hundreds (if not thousands) of different tools and workflows you can use to develop and ship websites. We’re focused on fostering quick and easy end-to-end workflows that help you deliver results that your clients love.
For example, you can now easily import sites into or export sites out of Studio. This is our first step towards a full, one-click WordPress.com syncing mechanism. Site cloning and a GitHub integration are also on our radar.
You also may have caught my tweet yesterday about our new Create Content Model prototype, which allows anyone to define custom post types and fields natively in the Block Editor.
Native content modeling for WordPress?
— Daniel Bachhuber (@dbchhbr) September 9, 2024
Not quite, but getting closer!
Check out Create Content Model, our latest @wordpressdotcom prototype, and let us know what you think!https://t.co/VJCp3VVIGc pic.twitter.com/Kp9alRqRmC
“GAME CHANGING!” and “Incredible!” were two of the dozens of positive reactions. We hope that our prototype spurs productive conversations within the core community.
We’re also making it easier for you to make money. For example, through our Automattic for Agencies program, freelancers and agencies can create a custom cart with a hosting plan and/or plugins, and then send the link to the client to check out. No need to worry about handling client credit card information or billing clients separately—it’s all done within a slick, easy-to-use interface.

This is just a quick preview of some of the big, impactful improvements you’ll be able to use soon as someone who hosts WordPress sites on WordPress.com. We’d love to know what other pain points you’d like to see us solve or features you’d like us to build! Either:
Leave a comment below.Come see us at the WordPress.com booth at WordCamp US next week.Connect with me on LinkedIn or Twitter/X.Original illustrations from David Neal (aka Reverent Geek). Come get a free avatar from him at the WordPress.com booth at WCUS next week!