Chris Wiegman Chris Wiegman

VS Code Extensions for WordPress Development

VS Code extensions for WordPress development

Last week I wrote about why I switched to Visual Studio Code (VS Code) from JetBrains’ products. As I said in that post, the real strength of VS Code lies in its extension library.

Of course, that statement isn’t helpful without a list of extensions to get started. Below is a list of the extensions I have currently installed in VS Code as of this writing. I do want to note that, in practice, my list changes quite a bit depending on what I’m working on. My current work is entirely WordPress focused and, as a result, so are most of my extensions.

Extensions for all projects

These are the extensions I use across tech stacks. One of the reasons I’ve moved to VS Code is its versatility compared to alternatives like PhpStorm and others. I can use it for GoLang, PHP, WordPress, Python or anything else. Regardless of what I’m working in though, these are the extensions I make sure I always have installed.

Git Graph

This extension displays a visual history of your Git repository. It’s incredibly helpful on my current team of 6 engineers as we tend to have a lot of work going at any given time. This allows me to visualize all that work and trace the history of various features we have in flight.

Git History

This allows me to see the history of individual files in my repository.

GitLens

This extension works with Git Graph and Git History to allow VS Code to be a full-featured Git GUI client. At one point in my career I had moved to doing most of my Git work on the command line, but no more. Now I find it faster to just use my editor and, with GitLens and the rest, I find it to be as powerful as any purpose-built tool I’ve used in the past.

Import Cost

This extension tells you how big any given JavaScript dependency is upon import allowing a visual reminder that no package is “free.”

One Dark Pro

One Dark Pro is my theme of choice. It’s pleasant to look at and minimal, just how I like it.

Settings Sync

While VS Code has a built-in settings sync now I’ve stuck with this after using it since moving to VS Code. It’s fast, reliable and relies on a GitHub Gist to save your settings and extensions. If you want to either backup your settings or if you use more than one computer it is a must-have.

Sort JSON Objects

This extension simply satisfies my need to keep JSON files appropriately sorted. I use it on my VS Code settings and numerous settings and other files to simply make them easier for me to read and find what I need.

Spell Right

This spell-check extension works great on both Mac and Linux. Spell checking is always a problem in code editors as acronyms and other syntax tends to create too many false positives. Spell Right seems to do a descent job of balancing those while still keeping my writing from becoming a mess.

Version Lens

I try to keep dependencies up to date in most of the projects I work on. This makes that easier by helping find updates in popular package managers like composer and others.

Extensions for WordPress projects

The following extensions are what I use for my current WordPress work. They help me write more efficient PHP and navigate the WordPress code base with a minimum of problems.

Document This

As I need to more JavaScript in WordPress these days, this extension helps me keep up with the documentation of any new code. It does a great job of automagically generating documentation for both JavaScript and TypeScript files.

ESLint

As the name implies, this is a simple ESLint integration for VS Code.

PHP Debug

Xdebug integration for PHP. This provides step debugging, tracing and other common tools to make working in PHP much easier.

PHP DocBlocker

This provides basic PHP documentation functions which helps make sure I don’t forget documentation and simply makes writing such documentation a little faster.

PHP Intelephense

This extension provides the “magic” for PHP work. It handles code completion, referencing and all the common functions you might want to use an IDE for. It’s so good that I paid the whole $12 to upgrade to the pro version. I will also add, that while it is good, it isn’t as complete as the feature set offered in PhpStorm but the agility of the VS Code platform more than makes up for that.

PHP Sniffer

This provides PHP_CodeSniffer integration for all my PHP work. While there are other, similar plugins in the repository this one I’ve found to be the most reliable for both sniffing and fixing any issues encountered. I pair it with the WordPress Coding Standards to take a lot of the mental load of syntax and other similar issues off my plate.

Prettier – Code Formatter

PHP Sniffer handles formatting PHP code. Prettier handles formatting JavaScript code and does an excellent job at it.

WordPress Hooks IntelliSense

WordPress’ hook system is extensive. This extension makes using it a little bit easier by offering autocomplete functionality for WordPress’ core actions and filters.

An evolving landscape

One important point I want to re-iterate is that, due to the nature of VS Code extensions, I find my list of installed extensions constantly evolving. That said, if you have other extensions for the above features or more features I haven’t even thought of, please do share them in the comments!