The WordPress coreCoreCore is the set of software required to run WordPress. The Core Development Team builds WordPress. development team builds WordPress! Follow this site for general updates, status reports, and the occasional code debate. There’s lots of ways to contribute:
Found a bugbugA bug is an error or unexpected result. Performance improvements, code optimization, and are considered enhancements, not defects. After feature freeze, only bugs are dealt with, with regressions (adverse changes from the previous version) being the highest priority.?Create a ticket in the bug tracker.
This Frequently Asked Questions list comes from questions that new Core contributorsCore ContributorsCore contributors are those who have worked on a release of WordPress, by creating the functions or finding and patching bugs. These contributions are done through Trac. https://core.trac.wordpress.org. ask in New Contributors Meetings.
Look for the list to grow over time as more questions get asked and answered.
There’s a lot of documentation out there. You’ll want to get a sense of what it covers and where the various parts and pieces live, start by going through it with an eye toward figuring out where things are, how they’re structured and what the topics are that particularly appeal to you.
You’ll probably forget the details, but you’ll know you can find things again with a search. Go ahead and bookmark those pages for further reference.
You’ll also want to set up SlackSlackSlack is a Collaborative Group Chat Platform https://slack.com/. The WordPress community has its own Slack Channel at https://make.wordpress.org/chat/. and join a few channels.
Start going to the scheduled meetings just to get an idea of how things get done:
what each group talks about,
what gets a lot of attention across groups and, therefore,
what the priorities are.
You also will want to go through the posts on Make WordPress Core to read meeting summaries from a while back, for context and to see how things get priority. Along with your other reading, you’ll start to get an idea of what the focus areas are and where you’d like to focus your time.
You can also pingPingThe act of sending a very small amount of data to an end point. Ping is used in computer science to illicit a response from a target server to test it’s connection. Ping is also a term used by Slack users to @ someone or send them a direct message (DM). Users might say something along the lines of “Ping me when the meeting starts.” them on Slack. If you have questions after a meeting, or you have a question you’d rather not ask publicly, you’re more than welcome to ping them throughout the week.
But patched rarely means finished. Generally, patches need review and feedback from other contributors. And from component maintainers.
Sometimes a first patchpatchA special text file that describes changes to code, by identifying the files and lines which are added, removed, and altered. It may also be referred to as a diff. A patch can be applied to a codebase for testing. takes significant edits. Sometimes you might see multiple patches at the same time, iterating on a solution or exploring a variety of approaches.
That’s why you see tickets that already have a patch, and why we don’t just automatically commit them. They still need testing, plus all those reviews and feedback we just mentioned. In fact, testing an existing patch and giving feedback is an excellent way for you to get involved, and a critical step in the process that moves them forward.
So once you’ve done your thing, whether patching or testing or reviewing, how do you get more eyes on a ticketticketCreated for both bug reports and feature development on the bug tracker.?
The ticket comments are your best friend. When you leave a comment, the ticket automatically pings everyone on the ticket: its owner, people who are watching the ticket and, best of all, one or more relevant component maintainers. And they have every interest in the world in getting that ticket committed and merged – it’s what we do as contributors to WordPress.
You can also bring it up in #core on Slack any time outside of any ongoing meeting (or in the open floor section of the weekly dev meeting).
Start with the list of good first bugs in coreCoreCore is the set of software required to run WordPress. The Core Development Team builds WordPress. or good first issues in GutenbergGutenbergThe Gutenberg project is the new Editor Interface for WordPress. The editor improves the process and experience of creating new content, making writing rich content much simpler. It uses ‘blocks’ to add richness rather than shortcodes, custom HTML etc. https://wordpress.org/gutenberg/.
These are well-contained tasks designed to help you get familiar with WordPress core code, processes and contributing. And they likely won’t send you down a rabbit hole.
There’s a TriagetriageThe act of evaluating and sorting bug reports, in order to decide priority, severity, and other factors. Team that’s looking for contributors. Its mission is to go through every open ticket in TracTracAn open source project by Edgewall Software that serves as a bug tracker and project management tool for WordPress. to review and triage each one, aiming to lower the absolute number of tickets in the short term and keep that number low going forward.
Generally, the release leads and component maintainers have some tasks they would like to prioritize for the release. For reference, see the proposed scope for 5.4.
Plus, from Trac, we merge a lot of small bugbugA bug is an error or unexpected result. Performance improvements, code optimization, and are considered enhancements, not defects. After feature freeze, only bugs are dealt with, with regressions (adverse changes from the previous version) being the highest priority. fixes and enhancements across every component.
Also, in the earliest weeks, there’s an open call for tickets so teams can get a better idea of what’s important to the community. Then, component maintainers and committers go over the results and add tickets that make sense, based on the overall priorities of the release.
See these articles for more information on creating patches with GitGitGit is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn and has a tiny footprint with lightning fast performance. Most modern plugin and theme development is being done with this version control system. https://git-scm.com/.:
If there are other patches on the ticket, add a numeric increment to your version, separated with a dot. Otherwise, name your patch after the ticket number.
For example, if your patch is the first for ticket 12345, name your file 12345.diff. If there are 2 other patches, name your file 12345.2.diff.
If you want, you can include a very shortened purpose to your filename.