« Back to Glossary Index

An IDE, Integrated Development Environment, is software that bundles together the tools developers need to write, test, and debug code — a code editor, a debugger, and often direct integration with version control — all inside one unified application.

  • Visual Studio Code — free, hugely popular, and highly extensible through plugins
  • PhpStorm — a premium IDE built specifically with PHP development, WordPress included, in mind
  • Sublime Text — a fast, lightweight code editor with a smaller feature set than a full IDE
  • Syntax highlighting, making code considerably easier to read
  • Auto-completion, speeding up the writing process
  • Built-in debugging tools, for finding and fixing errors efficiently
  • Git integration, allowing version control directly inside the editor

Editing a functions.php file, building a custom plugin, or developing a custom theme all benefit substantially from a proper IDE rather than a basic text editor — the added error-checking and code assistance alone can prevent a great many small, easily-avoided mistakes.

« Back to Index
Share This