Best Programming Language to Learn for WordPress Users

Last Updated on September 23, 2022 by 25 Comments

Best Programming Language to Learn for WordPress Users
Blog / Resources / Best Programming Language to Learn for WordPress Users

What is the best programming language to learn if you want to get better at WordPress? That depends. Being okay at WordPress is easy. Being great with WordPress, though, requires a little something extra. Learning a programming language or two is probably the best place to start becoming great with it. But there are so many different languages used in web development, figuring out where to start can be frightening.

Don’t worry, friendo. I gotcha.

PHP

Despite what my iPhone thinks, PHP is not a typo when I am not looking for delicious Vietnamese food on Yelp. It’s the fundamental programming language of WordPress and the backbone of over 80% of the internet. Those two facts together should be enough to make you want to learn PHP.

If PHP is your first programming language, it may be intimidating to look at, but can be pretty simple. In Divi’s case, you can look at single.php (the file that runs a single page) and see this:

<?php
 
get_header();
 
$is_page_builder_used = et_pb_is_pagebuilder_used( get_the_ID() );
 
?>

The code grabs the header, looks to see if the Divi page builder was used, then grabs the content by its assigned ID. That’s a single file that rushes out and grabs the content from the database isntead of having dozens (or hundreds or thousands) of HTML pages that have to be specified individually on your part.

That is very dynamic functionality, and PHP was one of the very first ways that allowed for dynamic websites. It uses an interpreter to parse the PHP code (that is often combined with HTML) and perform certain actions based on certain conditions. Basically, the language is what lets WordPress be WordPress.

If you want to make any substantive changes and dig deeper into WordPress, you’re going to need PHP. Any functionality that you want to add is written in PHP. Plugins? You guessed it: written in PHP.

Despite its reputation as being unfriendly, recent versions of the language have made it much more efficient and user-friendly. In 2014, tracking down bugs and fixing old code was like trying to pull a single noodle out of a bowl of spaghetti in a single piece. Debugging PHP in 2017, however, is more like unraveling a loosely knit sweater–you find what you want, and just pull until it’s done.

And as more updates are made to the WP core, the easier and less intimidating the PHP you interact with will become. It’s safe to say that if you want to be great at working with WordPress, PHP is the best programming language to learn.

Example PHP Code

The WordPress Codex and Developer Resources are great places to start when looking at how PHP is used in WP. For instance, this is the code that displays post content. Notice how it’s a combination of HTML tags and PHP scripts:

function the_content( $more_link_text = null, $strip_teaser = false) {
    $content = get_the_content( $more_link_text, $strip_teaser );
 
    /**
     * Filters the post content.
     *
     * @since 0.71
     *
     * @param string $content Content of the current post.
     */
    $content = apply_filters( 'the_content', $content );
    $content = str_replace( ']]>', ']]>', $content );
    echo $content;
}

If you want to set your installation to a multisite, you just add to your wp-config.php.

To increase the memory limits from the default (which is rarely high enough), put

define( 'WP_MEMORY_LIMIT', '512M' );

into your wpconfig.php.

JavaScript

JavaScript is an interesting programming language. Initially created for user-interaction and front-end development, JavaScript has become the new hotness over the past few years. Now a full-stack language (meaning it works with front-end browsers and back-end databases and servers), JavaScript is the fastest growing programming language on the interweb.

With platforms like Ember.js, Node.js, React, and AngularJS, the gap between how much of the internet is built on PHP and JavaScript is only going to get smaller.

That ubiquity means that if you’re looking for a way to keep up with WordPress in the future, JavaScript should be your go to. Even though WP is built on PHP, approximately 27% of the core code is now written in JS. And that number will only increase as more updates and contributions are made.

JS is an object-oriented programming language, which means that you set up “objects to model real world things that we want to represent inside our programs, and/or provide a simple way to access functionality that would otherwise be hard or impossible to make use of.” In a very-simplified nutshell, it keeps you from writing lots of repetitive code, get the job done quicker, and your life easier.

Is it the best programming language to learn? Maybe. If you choose JavaScipt, your job security and demand in the WordPress sphere will only get better and better, and if you decide to expand beyond our community, you’re going to have a definite competitive edge because of your expertise (especially if you also work in PHP).

Example JavaScript Code for WordPress

Make WordPress is an amazing resource if you’re looking to see how either PHP or JavaScript is used in core updates to the software. They have some great examples of what your code should look like, specifically in terms of standards shared between PHP and JS.

var i;
 
if ( condition ) {
    doSomething( 'with a string' );
} else if ( otherCondition ) {
    otherThing({
        key: value,
        otherKey: otherValue
    });
} else {
    somethingElse( true );
}
 
// Unlike jQuery, WordPress prefers a space after the ! negation operator.
// This is also done to conform to our PHP standards.
while ( ! condition ) {
    iterating++;
}
 
for ( i = 0; i < 100; i++ ) {
    object[ array[ i ] ] = someFn( i );
    $( '.container' ).val( array[ i ] );
}
 
try {
    // Expressions
} catch ( e ) {
    // Expressions
}

HTML

Technically speaking, HTML is not a programming language. It’s a markup language (after all, it is an acronym for hypertext markup language). The difference is that programming languages are based on functions, objects, automation, and interactivity. Markup is about marking up (see what I did that?) what users see. You get code to make tables, insert images, and format text. HTML is what made Geocities and MySpace pages look so awesome(?) back in the day.

HTML by itself is static (though HTML5 has introduced a number of new, dynamic structures). If you’re going to work with WordPress at all, HTML is the one language you’re going to need a working knowledge of. Even though WordPress is moving into more visual editing of content, themes, and styles, being proficient in HTML is never going to completely disappear.

HTML is pretty basic, though. You add links and display text. You separate paragraphs and make tables and insert images. It’s the skeleton of every page on the internet, really. It’s so fundamental that not knowing it (at least enough to be dangerous) will absolutely cost you jobs. HTML is definitely in the running as the best programming language to learn.

HTML Code Example

<html>
  <head>
    <title>BJ's Awesome HTML Page</title>
  </head>
  <body>
    <h2>This is my awesome website</h2>
      <p>I wrote this in HTML. How about them apples?</p>
      <p><strong>I even made this paragraph bold. You like that, right?</strong></p>
      <p><a href="/linked-page">This is a link to a different page on the same website!</a></p>
  </body>
</html>

best programming language to learn - WordPress HTML Sample

CSS

These days, you can’t have just skills in HTML. You have to be proficient with CSS as well. Because this isn’t 1997, and you aren’t making a Geocities site, you mustuse both markup languages to get anything done.

Think of CSS and HTML like Leslie Knope and Ann Perkins: BFFs you just can’t separate if you tried. CSS stands for cascading style sheet–with the focus on style. Yep, you guessed it, CSS is what you use to make things pretty, to take your HTML pages from looking like Geocities to looking like, well, anything else. That alone makes it a contender for the best programming language to learn.

CSS is what you use to animate elements now that we don’t use Flash or Shockwave. Remember them? Ah, memories. We use CSS to move elements around, stack them, shape them (yeah, you can use CSS to make all sorts of wacky shapes), and make your website jump through whatever hoops you want it to.

What’s special about CSS is that while it can be used in-line with HTML (just add the

style=""

tag to an element), it shouldn’t be. The page will render each instance of the tag individually, which slows your page significantly.

Enter the style sheet. You may be familiar with a little something called custom.css. Using a separate file to call all the styles from one location means that it only gets loaded once. You decide if an element needs a class or an id (a class will be used multiple times across the stie, while an id is for something that needs more specific attention).

Think of it like the objects we talked about above with JavaScript, or functions in PHP. You don’t want to replicate code, and you want to keep your server requests minimal. Stylesheets let you call the server once and apply it multiple times.

CSS Example Code

I personally keep a skeleton custom.css file that I copy/paste into each new site I work on. Of course, I edit it profusely each time, but having a foundational template saves a lot of time when you’re going to be styling the same elements for every site. This is the beginning of it, so you can see what I’m talking about.

 
body {
    font-family: "Roboto", arial, sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}
 
h1, h2, h3, h4, h5, h6 {
    color:  #fff;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
}
 
h1 {
    font-size: 2.75rem;
    margin: 40px 0px;
    font-weight: 400;
}
 
h2 {
    font-size: 32px;
    line-height: 35px;
}
 
h3 {
    font-size: 24px;
    line-height: 32px;
}
 
h4 {
    font-size: 24px;
    line-height: 28px;
}
 
h5 {
    font-size: 10px;
    font-weight: normal;
    line-height: 16px;
}
 
h6 {
}
 
.widgettitle {
    text-align: center;
}

Like HTML, there is no way to get around knowing CSS. While they are separate, they go together like sweet potatoes and jalapenos (try it if you don’t believe me).

So which is the best programming language to learn?

You know what to learn now, but where should you start? There is no dearth of resources for you to learn a programming language, but I am really partial to the three below. I used these three sites as my primary tools when I decided to prep to start freelancing.

  • Codecademy – Free, hands-on courses for tons of programming languages. Their in-browser editor walks you through everything you need to know, step-by-step.
  • CodeSchool – Like Codecademy, free, hands-on courses guide you through the language of your choice. They tend to theme their lessons around stuff like zombies to keep them interesting.
  • Team Treehouse – Not free like the other two, Team Treehouse is more like an online school than either of the others. They use tracks that feel like you’re talking a class on a particular topic of your chosen programming language.
  • The Elegant Themes Blog – We aren’t a programming blog, but there are tons of articles like the one I linked here looking at the best resources you can use to learn to program. I am personally fond of the ones discussing different text editors like Sublime Text and Notepad++. I just love trying out new text editors.

These languages are not your only options, but they are the foundations on which WordPress is built. So if you’re looking for the best programming language to learn, do yourself a favor and make it one of these, mmmkay?

Article thumbnail image by Fernandodiass / shutterstock.com

Divi

Want To Build Better WordPress Websites? Start Here! 👇

Take the first step towards a better website.

Get Started
Divi
Premade Layouts

Check Out These Related Posts

WordPress vs Medium (2024) — Where Should You Blog?

WordPress vs Medium (2024) — Where Should You Blog?

Updated on February 14, 2024 in Resources

If there is one question that goes back to the very beginning of blogging, it’s “what blogging platform should I use?” Everyone asks this question (to Google, most likely), and everyone gets bombarded with a thousand different answers. That’s primarily because there are so...

View Full Post
9 Non-Profit Child Themes for Divi

9 Non-Profit Child Themes for Divi

Updated on January 23, 2023 in Resources

There are lots of nonprofit organizations across the globe. Just about every one of them needs a well-designed website to tell their story and receive donations to help their causes. Divi is an excellent theme for nonprofits such as charities. Fortunately, you don’t have to start from scratch for...

View Full Post

25 Comments

  1. Any recommendations to learn PhP for WordPress online? Maybe Udemy or Treehouse…

  2. This heading doesn’t make sense… “So which is the best programming language to learn?”

    Then underneath you offer PLACES to learn.

    Confusing.

    • That’s what a good author does; it lets you down the pillow thinking about what they just said. I think the post is great. It doesn’t go exactly with one programming language; instead, it tells you the choices for WordPress designers and developers. For me, I think that the best is PHP and then JS.

      PHP because there are many things that you would like to change on your WordPress but can’t; many functions to add; they’re very overwhelming.

      JS, well, it’s the language of Google, in addition to Python, or course. But NODE.js is what Google V8 is made of.

      What programming language are you most familiar from the four he mentioned?

      • I think it depends on what your focus is. For the most part, I do think that JS is the one you want to be most fluent in (I am partial to React recently because of how well it interacts with the REST API), but if you don’t have a grasp on parts of PHP, you’re job will be a lot harder to do. IMO, if you have to pick one just out of “wanting to learn a new language for WP”, it’d be JS these days, but it really depends on the scope of the job you’re doing.

  3. Hi B.J. Keeton, Thanks for sharing this amazing article. Most of new WP Developer Don’t know which language should learn. Now we have an idea about it.


  4. Thanks, this is an EXCELENT post!
     

  5. w3schools.com is another great teaching and reference resource, it’s free and lets you try things in an interactive environment – for tricky problems go to stackoverflow.com

    Also when it comes to CSS customisation (e.g.) I use FireFox Inspector which will ‘decompile’ any specific element and it’s related CSS and will let you try out a change interactively and see an immediate result

    • I honestly don’t know how I left out Stack Overflow. I’m pretty sure it holds the answer to every one of life’s problems. 😛

  6. Now they tell me!

    • lol Yeap. And I found out about this post because I went directly to the blog page; I always receive their email. Anyways, I’ve always known that PHP, JS, CSS and HTML are the best for web development. But I spend myself as well a couple of unnecessary months on Java and C#. Not my forte.

      I”m thinking of JS and PHP to go to. Can we learn them simultaneously?

      • It is entirely possible to, but I think it would be very slow going and mildly confusing. Once you get a handle on a single language and the concepts behind why you’re taking certain actions, the second one will come much easier. (Such as for me, I started with FORTRAN77 back in the day and a little bit of BASIC, and most recently dove into Ruby and JavaScript, and having a background has helped a lot just pick up new syntax, since I already understood logic).

  7. but we know that HTML and CSS are not programming languages)

    • That was the very first thing that came out in my mind when I saw Html and Css in the article.

    • Exactly

      • I did note they’re markup languages in the text just for that reason 🙂

  8. Fantastic and very clear article!

  9. Perfect explanation of the bases of developing!!! Amazing, I didn’t know that the 27% of wordpress core is now js. By the way, for spanish speakers, I will add as a good place to learn Platzi

  10. PHP, HTML, CSS and JavaScript are excellent programming languages for WordPress developers. I also suggest SQL. While SQL is a query language, not a programming language, it is incredibly useful.

    A general knowledge of SQL will help users better understand WordPress and its underling database management system, MySQL. Basic SQL knowledge will also help WordPress users troubleshoot problems and perform very useful tricks such as speed up migrations, search and replace text, recover crashed sites, and a lot more.

    Thanks for the great article!

    • That’s really true. I am honestly pretty terrible with SQL stuff, but I have to be kind of remotely aware of what it looks like so I can ask my good-with-SQL friends to help me fix some problems. 😉

  11. I thought this article was going to tell me which of these languages was best to learn, but of course it’s best to know them all. I’ve known HTML for nearly 20 years and CSS for a decade, but I’m still struggling to learn any PHP or javascript. I’m a big fan of Lynda for general wordpress knowledge and learning other things, but they’re not the best source for coding education. I will have to try the resources you suggested! Also, perhaps I will try sweet potatoes and jalapenos. Do you have a favorite recipe?

    • I don’t think there is a single best, honestly, but I know I am focusing more on really getting great at JS right now than anything because I feel it has the most potential for the future.

      And as for sweet potatoes, bake one on 420 for about 90 minutes, then split it open on a plate, toss a dash of cream or milk, a few sprinkles of cheddar cheese and diced jalapenos, and then top with sour cream, avocados, and black beans. It’s super quick, easy, and not altogether unhealthy for you. It’s a go-to quick lunch/dinner in our house.

      • hahahhahahahahha that recipe made my night. lol

  12. I learned HTML and CSS in less than 1 month, I mean I know how to change stuffs at least if I get stock I just search google and there you go it’s as easy as you drink a glass of water!

    but php and java script will require more time, I don’t feel I need them at the moment but I might learn it later on.

    Each language adds +1 point to your career life.
    Thanks for your awesome article

    • I’m right there with you on that. I learned HTML and CSS very quickly, and took some tests to examine my knowledge after that short period and aced them. However, JS and PHP have similar to running on a flat road and feeling like you don’t need to workout that hard, and then hitting a hill and starting to “feel the burn.”

  13. Fantastic article and right on the money 🙂

    As we know, in order to customize WP, we also need a good understanding of the framework and internals.

    What resources would you recommend for this?

    Cheers!

Leave A Reply

Comments are reviewed and must adhere to our comments policy.

Join To Download Today