What is PHP? A Thorough Explanation for Absolute Beginners

Posted by download in Software on 11-10-2024

If you find yourself diving deeper into the topic of WordPress, content management systems, and websites, a term you will quickly stumble upon is “PHP.” You will likely hear how crucial PHP is for the Internet and that it is what’s powering WordPress websites.

However, what exactly is PHP, and why is it so important?

The short answer is that it’s a general-purpose, server-side scripting language. That said, unless you are already knowledgeable in programming and web development, that probably doesn’t make things much clearer. 

In order to help you better understand this topic, we’ll cover PHP in detail below. You’ll learn what PHP is, why it matters, and how it relates to WordPress and pretty much everything you do online. We promise you’ll be surprised to hear how much you likely rely on PHP every day.

  1. What is PHP? History, features, and benefits
    1. PHP features
    2. Benefits of PHP
  2. How PHP works: Creating dynamic web content
  3. PHP and WordPress: The CMS’ heart and soul
    1. Powering themes and plugins
    2. Without PHP, there would be no WordPress
  4. PHP in everyday life: You rely on it more often than you think
    1. Other abilities of PHP
  5. What is PHP? It is the web’s backbone

What is PHP? History, features, and benefits

The original developer of PHP was a Danish-Canadian programmer named Rasmus Lerdorf. He first created the language in the mid 1990s to build tools for his own website; that’s why PHP originally stood for “Personal Home Page.” Today, it stands for the recursive acronym “Hypertext Preprocessor” and development and support has been taken over by the PHP Group.

the PHP group homepage showing a description, two buttons, and version changelogs

PHP features

PHP has some notable features, many of which are applicable to the way WordPress works:

Open Source: The first thing that is important to note is that, like WordPress, PHP is open source. That means it does not belong to any one business entity. It also means that it’s free to download and use for any purpose.

Also like WordPress, PHP is maintained by a number of volunteers around the world. The next major release, 8.4, will be available November 21, 2024.

Finally, both WordPress and PHP are community-funded––while WordPress has the WordPress Foundation, The PHP Foundation’s mission is to “ensure the long-term prosperity of the PHP language.” Automattic is a proud Platinum Sponsor of The PHP Foundation.

Server Side: PHP is a server-side language, which means it executes on the server and not in the user’s browser.

For example, PHP’s most frequent application is for creating HTML documents for websites. Even though there are PHP files on the server, the browser does not receive the PHP code; instead, it receives the finished HTML documents for display. This is different from client-side languages like JavaScript where the processing happens directly in the user’s browser after downloading the JavaScript files.

To make things clearer, server-side languages are a bit like going to a restaurant. You send an order to the kitchen, they prepare the meal, and it arrives at your table ready to eat. Client-side languages, on the other hand, are like meal-delivery services. While they provide you with all the necessary ingredients, you still have to put them together in your own kitchen.

General Purpose: PHP is also a general-purpose programming language. You can use it for command-line scripting, creating desktop applications, and more. However, its primary application is in web development. 

Ubiquitous: According to W3Techs, the language is present on 75.7% of all websites. That includes some famous ones, as you will see below.

In addition, it forms the backbone of many content management systems like DrupalJoomla!, and—the most popular of them all—WordPress.

PHP is one of the biggest open source success stories, as much of the modern Internet depends on it to work.

Benefits of PHP

You might be asking yourself why the usage of PHP is so widespread. There are many good reasons for that, but here are just a few:

  • Beginner-Friendly: PHP is relatively easy for beginners to learn due to its intuitive syntax. There are also plenty of tools and frameworks available to make coding easier.
  • Wide Community: The language has a vast and active community of developers worldwide. This means there are loads of online resources, forums, and other places where users can seek help and find ready-made solutions to common problems.
  • Cross-Platform Compatibility: PHP is compatible with popular operating systems, including Windows, MacOS, Linux, and Unix. It also works on various web servers such as Apache, NGINX, and Microsoft IIS.
  • Database Connectivity: In addition, it works with a number of different database formats, such as MySQL, MongoDB, PostgreSQL, SQLite, Oracle, and more. PHP can execute SQL queries, retrieve, update and delete data, and handle database connections and transactions.
  • Cost-Effective: As we have already learned, the programming language is free to use, distribute, and modify. That eliminates the need for expensive licensing fees and reduces development costs, making it an economical choice for web development projects.
  • Scalability: PHP is capable of handling high traffic loads and can easily scale. You can use it together with caching techniques and other optimization strategies to enhance performance. Plus, it’s generally faster than some other programming languages, such as Python.

How PHP works: Creating dynamic web content

One of the main reasons why PHP is so popular for web development is that it seamlessly integrates with various technologies and services commonly used in this area. Examples include HTTP, POP3, IMAP, and more. 

One of its main advantages is that it is highly compatible with HTML, the main language used to create and display websites. In fact, it’s possible to use PHP code in HTML files and vice versa.

<div class="about__section is-feature has-subtle-background-color">
	<div class="column">
		<h2><?php _e( 'Shape the future of the web with WordPress' ); ?></h2>
		<p><?php _e( 'Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.' ); ?></p>
		<p><a href="<?php echo esc_url( __( 'https://make.wordpress.org/contribute/' ) ); ?>"><?php _e( 'Find your team &rarr;' ); ?></a></p>
	</div>
</div>

Above you can see how both languages appear in the same file. The PHP markup is delineated by opening and closing brackets (<?php and ?>) so that the server knows where it ends and begins. However, the PHP code itself is inside an HTML <p> element. The _e function is a WordPress function used for localization, which allows for easy translations across the WordPress software.

The main benefit of this is that using PHP allows web developers to display dynamic content in otherwise static web pages. For example, PHP is able to pull content directly from databases, making it great for templating. You can create a fixed layout for all web pages but then display different content depending on the page a user is on.

the templates page on a WordPress site showing All Templates

This is vastly different from pure HTML, where the content needs to be hard-coded in the page file in order for the browser to show it. PHP, on the other hand, can add it on the fly as needed. That’s one of the main benefits of this programming language—the ability to dynamically combine and display content from different sources and of different kinds according to what the user requests.

PHP and WordPress: The CMS’ heart and soul

As a WordPress user, PHP is especially important. The programming language forms the basis of much of what WordPress can do. It’s what allows you to create, edit, and delete pages, posts, media, and other content. That’s why you see that a lot of files that end in .php when you look in the directory of any WordPress installation.

A screenshot of the PHP patterns files for a WordPress website in VS Code

It’s also why, when installing WordPress on a server, the system requirements insist that PHP be present. In recent years JavaScript has been playing a bigger and bigger role in the WordPress ecosystem, mainly because of the adoption of the Gutenberg editor. That said, PHP is still the main workhorse in the background.

Powering themes and plugins

What are some of WordPress’ main tasks powered by PHP? Before the advent of block themes, WordPress themes were all written mostly in PHP, especially page template files. In fact, if you look at the template hierarchy, you can see that WordPress has PHP files for pretty much all pages and theme components.

a visualization of the WordPress template hierarchy
Image from WordPress.org

Why? So we have the ability to create a single layout for one type of content and then dynamically display what’s saved in the database for a particular piece of content.

That way, if you have 300 pages of the same kind on your site, you don’t need a file for each as you would on a pure HTML website. Instead, you just need one single page template file; PHP can then populate each individual page with its specific content.

PHP also makes it easy to compartmentalize different parts of your theme. For example, it’s very common to not have the markup for a footer in each file. Instead you can create a separate footer.php file and call it into your templates where needed. That way, if you want to modify the footer layout, you only have to make changes in a singular place—the footer.php file.

A highlighted footer template on the Pages template on WordPress with a mint green background

The same is true for plugins, aka collections of PHP files that contain the necessary markup for adding extra functionality to your WordPress site. When you activate a plugin, it gets added to the rest of your website code and can provide the functionality you are looking for.

Without PHP, there would be no WordPress

All of the above is only made possible by the flexibility that PHP offers. Besides the benefits we have discussed before, this is the main reason why WordPress relies on PHP to the extent that it does; PHP offers a ton of flexible functionality specifically for web development. PHP’s capabilities in content management, working with databases, and its modularity all make it a perfect candidate for powering the most popular website builder there is.

This also means that if you know PHP, it opens up a lot more possibilities to modify your WordPress website. You can write custom plugins, make changes to (non-block) themes and page templates, introduce functionality to functions.php, and so much more. So, if you want to improve your WordPress skill set, learning PHP is not a bad place to start.

PHP in everyday life: You rely on it more often than you think

Besides WordPress, you might actually be unaware how much of your general everyday online interactions are enabled by PHP. There are a number of very well-known websites that use PHP to run and many common processes that the programming language performs online:

  • Facebook: The largest social network in existence was initially built using PHP. While they have moved away from the programming language over time, it still plays a significant role in their infrastructure.
  • Wikipedia: The world’s biggest online encyclopedia also relies heavily on PHP for its back end operations, content management, and user interactions.
  • Tumblr: This microblogging and social networking platform employs PHP to power its vast network of user-generated content and social interactions. We’re actually in the process of migrating Tumblr’s backend to run on WordPress; if you’re interested in being a part of this exciting project, leave your information here.
  • Slack: This widely-used team collaboration and communication platform utilizes PHP for its back-end operations, real-time messaging, and API integrations.

And this is just the tip of the iceberg. There are countless other examples of well-known web staples that exist in part because of PHP.

Other abilities of PHP

Up until this point, we’ve mostly talked about PHP in the context of creating and outputting HTML markup; however, the programming language is involved in a lot more that you probably take advantage of on a daily basis:

  • Form Processing: PHP can process and validate data submitted by users via forms. It’s also capable of performing actions such as storing data in a database, sending email notifications, or generating dynamic responses based on user input. Plus, it comes with encryption to keep the submitted data safe.
  • User Authentication: It can also handle user authentication by verifying login credentials. PHP allows you to implement user registration and login/logout functionality, and it can control access to different areas of your website or application. For example: user roles.
  • Session Management: PHP can also manage user sessions, store session data, and track user activity. Among other things, this allows you to save user preferences. PHP can also set cookies and receive cookie data.
  • File Manipulation: The programming language provides a wide range of functions for file manipulation, such as reading and writing files, uploading files from forms, creating directories, and modifying file permissions. This comes in handy for managing files on the server through other applications (like WordPress).
  • Email Handling: PHP comes with functions to send emails from a server. This allows you to build features like contact forms, email notifications, and automated email responses.
  • Third-Party Communication: With PHP you can interact with external APIs and web services. It makes it possible to integrate with other applications, retrieve data from remote servers, and perform actions like posting to social media platforms.

What is PHP? It is the web’s backbone

If you’re an everyday WordPress user or non-developer, you probably don’t spend a lot of time thinking about how much of your online experience is possible thanks to the humble PHP. However, the more you dive into this topic, the more you’ll realize how much you rely on it.

Who knew an open source solution was at the heart of what makes the World Wide Web tick? From the largest content management system in the world to well-known web entities, so much of what we take for granted exists because of it.

There are good reasons why it’s so widespread; from its powerful capabilities over its wide support system to ongoing development and support, there is a lot that speaks for PHP as the go-to solution for web projects.

Since it’s also beginner friendly, learning some PHP skills is definitely a good place to start if you want to dive deeper into the technical aspects of WordPress and web development.

Forking is Beautiful

Posted by download in Software on 10-10-2024

The right to fork the software is at the heart of open source. WordPress itself started as a fork of the b2/cafelog project. WordPress was one of several forks from b2, which included b2++ (which eventually became WordPress Multisite) and some like b2evolution which still continue today.

The last decent fork attempt for WordPress was ClassicPress in 2018, over disagreements about Gutenberg being integrated into core.

We’re very proud to announce that Vinny Green, a former WordPress community member, has started his fork, FreeWP. We strongly encourage anyone who disagrees with the direction WordPress is headed in to join up with Vinny and create an amazing fork of WordPress. Viva FreeWP!

Hot Off the Press: New WordPress.com Themes for October 2024

Posted by download in Software on 09-10-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

a screenshot of the Dossier WordPress.com theme homepage with a dark grey background and white text

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.

Explore Dossier →

StartOrg

a screenshot of the StartOrg WordPress.com theme showcasing a photo taken through a fence of a soccer game and white text

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.

Explore StartOrg →

Impressionist

a screenshot of the Impressionist WordPress.com theme homepage with a pastel watercolor image and black text

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.

Explore Impressionist →

Podbase

a screenshot of the Podbase WordPress.com theme homepage with a black background and yellow text

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.

Explore Podbase →


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:

Please Welcome Mary Hubbard

Posted by download in Software on 08-10-2024

We’re proud to announce that Mary Hubbard has resigned as the Head of TikTok Americas, Governance and Experience, and will be starting as the next Executive Director of WordPress.org on October 21st!

Mary previously worked at Automattic from 2020 to 2023, and was the Chief Product Officer for WordPress.com, so she has deep knowledge of WordPress and expertise across business, product, marketplaces, program management, and governance.

WordPress 6.7 Beta 2

Posted by download in Software on 08-10-2024

WordPress 6.7 Beta 2 is now ready for testing!

This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 2 on a test server and site.

You can test WordPress 6.7 Beta 2 in four ways:

PluginInstall and activate the WordPress Beta Tester plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).
Direct DownloadDownload the Beta 2 version (zip) and install it on a WordPress website.
Command LineUse the following WP-CLI command:
wp core update --version=6.7-beta2
WordPress PlaygroundUse the 6.7 Beta 2 WordPress Playground instance to test the software directly in your browser without the need for a separate site or setup. 

The current target date for the final release of WordPress 6.7 is November 12, 2024. Get an overview of the 6.7 release cycle, and check the Make WordPress Core blog for 6.7-related posts in the coming weeks for more information.

Catch up on what’s new in WordPress 6.7: Read the Beta 1 announcement for details and highlights.

How to test this release

Your help testing the WordPress 6.7 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This detailed guide will walk you through testing features in WordPress 6.7.

If you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to WordPress Trac if you are comfortable writing a reproducible bug report. You can also check your issue against a list of known bugs.

Curious about testing releases in general? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.

Vulnerability bounty doubles during Beta/RC

Between Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the monetary reward for reporting new, unreleased security vulnerabilities is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.

Beta 2 updates and highlights

WordPress 6.7 Beta 2 contains more than 18 Editor updates and fixes since the Beta 1 release, including 28 tickets for WordPress core.

Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:

A Beta 2 haiku

Beta 2 arrives,
October’s code settles in,
Change rustles like leaves.

Props to @jeffpaul for proofreading and review.

WPGraphQL is Canonical

Posted by download in Software on 07-10-2024

Happy to announce that WP GraphQL is becoming canonical on WordPress.org. I could say more, but I’ll let Jason tell his story.

WP Briefing: Episode 87: Enterprise Clients and the Business of WordPress

Posted by download in Software on 07-10-2024

Back by popular demand! We’re taking a look at one of our most insightful episodes: Enterprise Clients and the Business of WordPress. Whether you missed it the first time or just want a refresher, we rewind and look back at the importance of WordPress with Enterprise businesses. Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the role WordPress Enterprise plays along with the WordPress community.

Credits

Host: Josepha Haden Chomphosy
Editor: Dustin Hartzler
Logo: Javier Arce
Production: Brett McSherry
Song: Fearless First by Kevin MacLeod

Show Notes

Transcript

[00:00:00] Josepha: Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go.

[00:00:28] (Music intro)

[00:00:39] Josepha: In a previous episode, we talked about the Community Summit and some trends that I was seeing. I’ve spent a lot of time since then summarizing the notes from each session, and I was processing notes from the session about aligning WordPress Enterprise and WordPress Community, which is a session that explored the various strengths and weaknesses of WordPress from an enterprise perspective, but especially when it comes to contributing to or communicating about WordPress.

Now, my vantage point on analyses like these is generally pretty different. Since I work mainly in an operations space for the project, I’m almost always looking at the health and safety of our ecosystem, product excellence, funding, things like that. So, I especially like to attend sessions that are from the vantage point of people who are much closer to the work than I am.

[00:01:24] Josepha: When I looked at the brainstormed list of things from the session, my first inclination was to catalog the relationships between what we saw as a positive or a negative and the things that we saw as intrinsic to us versus part of the environment. But the more I look at it, the more I see that there’s confirmation of what I have always known to be true. That WordPress is a valuable starting point for web-based solutions of all sizes and any purpose. Let’s take a look at some of the biggest themes that shine through from that session. I was able to distill them down to about nine primary themes, but I especially want to focus on some that come up year after year in talking with our community.

[00:02:07] Josepha: The first, of course, is the community and ecosystem. If you’ve listened to this podcast 62 times, then you’ve heard me say at least like 60 times that the community is what sets us apart from other open source projects. But, I would encourage you to expand that understanding to include the ecosystem that the community provides.

The community not only helps to plan and create WordPress, our primary software, but it also makes it distributable through the Polyglots team and Accessibility and Docs and Training. It also makes it extendable through plugins and themes, and all of the work that goes into reviewing plugins and themes, and the support that’s provided to people who come to the WordPress.org site, trying to figure out how to make this thing work for them.

And we also, this community, make it knowable, not only through the community part with our event series but also in marketing and the videos that we provide on WordPress TV and all of the training and learning cohorts that we provide on learn.WordPress.org, all of those teams make WordPress learnable and knowable and easy to use and usable to more people and available across the world, regardless of whether you speak English or not. And so yeah, the community and the ecosystem is one of the things that makes WordPress valuable for enterprise, but also WordPress valuable in general. 

[00:03:33] Josepha: The second is the software’s usability and flexibility. We exist for as long as people want to use our software, and that’s a funny little two-sided coin for us. WordPress remains very usable for folks who come to it in the same way that I came to it, which is as a user who is trying to accomplish a goal unrelated to WordPress. I didn’t start using WordPress because I wanted to figure out how WordPress worked or because I wanted to figure out how to contribute to WordPress. I came to WordPress because I was trying to market something, and WordPress was the best choice for that. But it’s also flexible for our brilliant developers out there who are doing things like building a suite of sites for NASA or creating bespoke social networks. So, our usability and flexibility, both of those things working together, are certainly one of the things that make me know that WordPress is incredibly valuable for anyone who needs to use it.

[00:04:30] Josepha: But the final thing is WordPress’s longevity or our resilience. So, I used to work at a marketing agency that served enterprise-level clients. And any time we pitched a new site build to a client, one of the main elements of discussion during decision-making was how long the decision would last. Do you want a page that you can launch in a day, run a six-week campaign through, and then abandon it forever? Or do you want a site that can take up to six weeks to build but can be yours to refine and hone for years after that? I know this seems like a silly example, but when you’re looking at the potential for a long-term bet, what you’re worried about, what you’re asking is, is this a software trusted in my industry? Is it time-tested by those companies I aspire to be? Is the available workforce composed of seasoned professionals or flash-in-the-pan peddlers of the latest craze? And of that workforce, how many will still be doing this in five years?

[00:05:32] Josepha: The question of how long we’ve been doing this and why it matters that WordPress has been here for 20 years and has no intention of going anywhere should be so much higher on everyone’s list of reasons to use this software. Yes, the WordPress software is powerful enough to be everything you might want it to be someday, but the WordPress ecosystem brought to us by this community has shown resilience through major breaking changes in 2008, 2016, 2018, 2020, and probably a lot of things between there that we have forgotten. So, if I were hoping to hedge my bets on a long-term solution, I would absolutely place those bets on this community, this ecosystem, and this software. 

(Music interlude) 

[00:06:25] Josepha: That brings us now to our small list of big things.

There are some upcoming WordPress meetings. You can find those on make.WordPress.org/meetings, I think. So really, really easy URL to remember. You can join your fellow community members and contribute to the WordPress project there.

[00:06:43] Josepha: And I also wanted to just call your attention to a few really big projects that still need a little bit of help around the project. So, on the one hand, we have Data Liberation. That is still a really big project, but specifically, we are nearly ready to start working on some user-facing elements of that. It is being powered by Playground, and because the data liberation, the migration of one site to another, is so complex, once we get those elements built into Playground, I think it also stands to fix a bunch of the problems that we have across our user flow, our user experience for the project. Things like having better theme previews and being able to get a sense for what a plugin functionally will do for you versus what it says it’s going to do for you. And getting a sense for what the admin looks like, all of those things. And so, anyone who wants to learn more about contributing to Playground or to Data Liberation, I absolutely encourage you to go check out those meetings, see what’s happening, and get your hands a bit dirty with that.

[00:07:50] Josepha: We also have a bunch of stuff happening in our community space. If you had received this podcast from somebody because they were like, hey, I know someone who might like WordPress or who has just learned WordPress and has never been to an event or any other reason that you are listening to this but don’t yet know the community, there is an easier option than just jumping straight into a WordCamp like I did. You can go to a meetup. You can see there’s a widget in your dashboard that’ll tell you what your nearest event is, but if you put your location into that widget, and nothing comes up. Technically, that means that you have an opportunity to bring a bunch of people together to teach you stuff you wish you knew about your site right now. So you can wander over into your dashboard and see those, or you can also head over to the community area on make.WordPress.org and anybody over there is happy to help you get started. And let me tell you, it is a very low-effort sort of thing to do. Here again, perfection’s not the point. And so that, my friends, is your small list of big things.

[00:08:52] Josepha: Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there is a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at WPBriefing@WordPress.org. I am your host, Josepha Haden Chomphosy. Thank you for tuning in today for the WordPress Briefing, and I’ll see you again in a couple of weeks.

[00:09:18] (Music outro)

WordPress 6.7 Beta 1

Posted by download in Software on 01-10-2024

WordPress 6.7 Beta 1 is ready for download and testing!

This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, set up a test environment or a local site to explore the new features.

How to Test WordPress 6.7 Beta 1

You can test Beta 1 in any of the following ways: 

WordPress Beta Tester Plugin Install and activate the WordPress Beta Tester plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.
Direct DownloadDownload the Beta 1 version (zip) and install it on a WordPress website.
Command Line (WP-CLI) Use this WP-CLI command: wp core update --version=6.7-beta1
WordPress PlaygroundUse a 6.7 Beta 1 WordPress Playground instance to test the software directly in your browser. No setup required–-just click and go!

The scheduled final release date for WordPress 6.7 is November 12, 2024. Your help testing Beta and RC versions over the next six weeks is vital to ensuring the final release is everything it should be: stable, powerful, and intuitive.

How important is your testing?

Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether or not you have experience.

If you encounter an issue, please share it in the Alpha/Beta area of the support forums. If you are comfortable submitting a reproducible bug report, you can do so via WordPress Trac. You can also check your issue against a list of known bugs.

Curious about testing releases in general and how to get started? Follow along with the testing initiatives in Make Core and join the #core-test channel on Making WordPress Slack.

WordPress 6.7 will include many new features that were previously only available in the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 6.7 in the What’s New in Gutenberg posts for versions 18.5, 18.6, 18.7, 18.8, 18.9, 19.0, 19.1, 19.2, and 19.3.

What’s New in WordPress 6.7 Beta 1

WordPress 6.7 Beta 1 contains over 500 enhancements and over 500 bug fixes for the editor, including more than 200 tickets for WordPress 6.7 Core. Here’s a glimpse of what’s coming:

Meet the Twenty Twenty-Five theme

Launching with WordPress 6.7, the new default theme, Twenty Twenty-Five, embodies ultimate flexibility and adaptability, showcasing how WordPress empowers you to tell your story with a rich selection of patterns and styles. Inspired by glimpses of natural beauty and ancestry heritage, it evokes ideas of impermanence, the passage of time, and continuous evolution–mirroring life’s journey. Experience effortless site creation with Twenty Twenty-Five and follow its progress or report issues on this GitHub repo.

Zoom Out to Compose with Patterns

The Zoom Out view simplifies your editing experience by allowing you to create and edit at the pattern level rather than focusing on individual blocks. Easily toggle this view from the toolbar to streamline your site-building process, making it faster and more intuitive to design pages using patterns.

Media improvements 

Now supporting HEIC image uploads–automatically converted to JPEG for maximum compatibility–you can add high-quality images without worrying about browser support. Plus, enjoy auto-sizing for lazy-loaded images and expanded background image options at both individual and global levels, giving you greater control over your site’s visuals and performance. 

Expanding Block Supports

Several blocks now come with expanded support options, enabling even more design possibilities. Notably, the long-requested shadow support for Group blocks has been added, a big win for designers and theme developers!

Preview Options API 

The latest WordPress release enhances the Preview Options in the block editor, empowering developers to customize content previews. A new API allows plugins and themes to add custom items to the preview dropdown menu, enabling users to see content in different formats or environments. This flexibility enriches the editing experience while maintaining the existing familiar Preview dropdown structure.

Refined Data Views

The Data Views introduced in 6.5 continue to be improved. This release is focused on refining the experience with a few new features aimed at making these views more flexible for customization and more functional to use. 

Manage Block Bindings Directly

The Block Bindings API now features an interface that lets you connect attributes with dynamic data to be bound to block attributes, solving many use cases for custom blocks and powering other features, like overrides in synced patterns. Updates to this API in 6.7 polish the underlying APIs, improving the overall user experience, and add a user interface (UI) that allows you to connect attributes with their binding sources. This new UI makes it possible to create bindings directly in a block instead of needing to use the Code Editor.

Simplified and Smarter Query Loop Block

The Query Loop block is improved, as it now automatically inherits the query from the template by default, eliminating the need for manual configuration. This means your posts display immediately in both the editor and on the front end, streamlining the process so users can focus on content without extra configuration needed.

Edit and Control Font Size Presets

An enhanced Styles interface allows for greater flexibility when creating, editing, removing, and applying font size presets. You can now easily modify the presets provided by a theme or create your own custom options. A key feature is the ability to toggle fluid typography, which enables responsive font scaling with additional options for finer control over responsiveness.

View Meta Boxes in the iframed Post Editor

A new split view option has been introduced that allows you to access both the editor canvas and metaboxes while editing. This change will provide a consistent WYSIWYG experience between the editor and front end views.

Template Registration API

With this release, developers can now more easily register custom block templates without complex filters. Streamline your development process and create custom templates with ease. 

The features included in this first beta may change before the final release of WordPress 6.7, based on what testers like you find.

Get an overview of the 6.7 release cycle and check the Make WordPress Core blog for 6.7-related posts in the next few weeks for further details.

Vulnerability bounty doubles during Beta & Release Candidate

The WordPress community sponsors a monetary reward for reporting new, unreleased security vulnerabilities. This reward doubles during the period between Beta 1 on October 1, 2024 and the final Release Candidate (RC) scheduled for November 5, 2024. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the HackerOne page and in the security white paper.

Just for you: a Beta 1 haiku

Lines of code arise, 
Testing shapes the future path,  
WordPress grows once more.

Props to @annezazu, @cbringmann, @courane01, @desrosj, @marybaum, and @preithor for reviewing and collaborating on this post!