The first post in this series laid the groundwork for understanding taxonomies, terms, and their relationship within the context of WordPress. If you haven't read it yet and you're brand new to WordPress development, then I highly recommend reading through it as this post is going to build on top of everything covered in that article.
Furthermore, as we proceed with talking about more types of metadata, it's important to review the previous series in which we covered:
The reason that it's worth reviewing those articles is because this article is going to resemble some of the techniques covered in those articles, and will also build on some of the strategies with working with similar APIs.
Above all else, this tutorial aims to provide a walkthrough of how to work with one of the newest metadata APIs available in WordPress.
As previously mentioned, this particular article is geared more towards those who are just getting into WordPress development or who are looking to grow their skills. So if you're an advanced developer, then the content covered in this article may not be of the most interest to you.
One of the key things to remember as we work through this tutorial is that the code is not to be used in a production environment. That is, it's meant to solely study the API and to understand how it works.
The code that we're writing is not meant to be used in a project that will be used for an audience or by a group of users. The main reason is because there are topics such as sanitization, validation, escaping, and so on that are beyond the scope of the previous series as well as this series.
After we've wrapped this article, we'll move on to more advanced topics such as those, but for now we're going to focus solely on the Term Metadata API.
Before talking about the metadata API, let's make sure that we're all on the same page as it relates to the various terminology that we'll be using. Specifically, we need to make sure that we understand taxonomies, terms, and the relationship between the two.
First, the Codex defines taxonomies as:
In WordPress, a "taxonomy" is a grouping mechanism for some posts (or links or custom post types).
In a default WordPress installation, you can think of these as categories and tags. They can be hierarchical, like categories, or non-hierarchical like terms.
Terms, on the other hand, are defined as:
In WordPress, a term is a classification, group or subset of a Taxonomy, where the latter can be a Category, Tag or Custom Taxonomy. By default, terms have a title, a slug and a description. Hierarchical taxonomies like categories can define a parent term.
Finally, the relationship between taxonomies and terms is such that one can't really exist without the other (especially in hierarchical taxonomies). That is, a category taxonomy must have at least one term associated with it; however, non-hierarchical taxonomies don't necessarily have to follow that.
With that said, let's get started with working with the Term Metadata API.
As with the other metadata APIs that are available, we're going to be able to do things such as:
add
update
retrieve
delete
And because this is a new API, it may not be immediately clear what some of the advantages of this API are. Though we're only going to explore some of the basics in this article, it's worth considering just some of the things that we can do.
For example:
Of course, there are many more possibilities. But, for now, let's see how we can incorporate this into our work.
In order to get started, let's make sure we're on the same page on what we'll be using to get this work done. Specifically, here's what you need, and here's what I'm using.
Once you have all of this set up, then we'll be ready to go. If you need help getting your development environment set up, then please see this series of articles.
The first thing that we need to do is to create a file that will contain all of the work that we're going to do in this tutorial.
First, we need to create tutsplus-term-metadata.php
in the root of the twentysixteen
theme directory.
Next, we need to add the following line of code to the theme's functions.php file. This will make sure that we're including our work into the theme.
<?php /** * Add the code that allows us to work with the Term Meta API. */ include_once( 'tutsplus-term-metadata.php' );
When you reload your browser, you should see something like the following image:
There should be no error output, and it should work as if nothing has changed. Finally, if you're working with a fresh installation of WordPress, the term metadata table should look completely empty:
Next, in order to make sure that we have a category with which we're working, go ahead and create a new category in your WordPress installation. I'm going to create one called Main and make sure that Hello World is stamped with this.
Once done, take a look at the terms table in the database in order to get the term_id
. In my case, the term_id
is 2
. Yours may vary, but the point is that you know that ID of the term in question:
Take note as we'll be using this throughout the tutorial.
To get started, it's important to recognize that that add_term_meta
function can serve two purposes:
The function accepts a term ID, a meta key, a meta value, and an optional boolean value that determines whether or not the value being stored is unique.
First, let's create a unique value in the database. Enter the following code in your editor, refresh Hello World, and then view the termmeta
table.
<?php add_filter( 'the_content', 'tutsplus_add_term_meta' ); function tutsplus_add_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { add_term_meta( $term_id, 'my_meta_key', 'my_meta_value', true ); } return $content; }
You should see your information.
If you change the meta value and refresh the page, you should notice that the value in the database has not changed. This is because you've said that this should be a unique value and the first value that's written will be not be changed or overwritten.
This can be achieved with update_term_meta
, but we'll look at that code momentarily.
Before looking at how we can update term meta, though, let's look at how we can add multiple values to the same meta key and the same term ID. The code below looks similar to the code above except we aren't passing true into the function.
<?php add_filter( 'the_content', 'tutsplus_add_term_metas' ); function tutsplus_add_term_metas( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { for ( $i = 0; $i < 3; $i++ ) { $meta_value = "my_meta_value_$i"; add_term_meta( $term_id, 'non_unique_key', $meta_value ); } } return $content; }
Refresh Hello World a few times and then take a look at the database. You should see something like this:
Make sense? Basically, when you say that you want to have a unique value, the first value that you enter will persist as the only value (unless you update or delete it).
If, on the other hand, you don't specify that you want it to be a unique value, then you can store as many values as you want with the term ID and the meta key.
This, however, leads the way to retrieving information and deleting information differently from the database; we'll take a look at this in more detail later in the article.
The API function update_term_meta
affords us a couple of nice options. First, it gives us the ability to add a single, unique entry into the database without having to use the fourth parameter of add_post_meta
.
Secondly, it allows us to update a specific piece of metadata as long as we know what the previous value was. Let's take a look at both of these cases given the current state of our database.
To add unique metadata, we can make a call that's very similar to what we saw in the first example to add_term_meta
. Instead, this time, we use update_term_meta
. For example, review the following code:
<?php add_filter( 'the_content', 'tutsplus_update_term_meta' ); function tutsplus_update_term_meta() { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { update_term_meta( $term_id, 'update_key', 'my_unique_update_value' ); } return $content; }
Refresh Hello World a few times and no matter how many times you refresh it, you'll see a single value entered into the database. If you're following along with the code, then you should see something like this:
But what happens when there are multiple records with the same meta key and we want to update them?
In order to update a record that has the same term ID and the same meta key, it's important to know the previous value. In our case, we know that we have a value called my_meta_value_1
.
To that end, we can update this specific row by specified the new value and the old value in the update_term_meta
function. To do this, take a look at the following code:
<?php add_filter( 'the_content', 'tutsplus_update_term_metas' ); function tutsplus_update_term_metas() { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { update_term_meta( $term_id, 'non_unique_key', 'my_meta_value_1_updated', 'my_meta_value_1' ); } return $content; }
And then refresh Hello World. Once done, the updated meta value should look like this:
If you're not seeing the same result, make sure that you're properly specified the correct function name in your hook, the write term ID, the right meta key, and the right previous meta value.
In order to get the metadata that we've retrieved, we can use the get_term_meta
function.
Note, however, that when we retrieve term metadata, we may be dealing with a meta key that has several values associated with it. Or we may be dealing with a meta key that has only a single value.
Depending on the situation, we'll need to specify different information to the function.
Retrieving all of the metadata associated with a single term is easy, as the code below will demonstrate. The key thing to pay attention to is that the results are returned in an array.
In the example below, we're going to use the non_unique_key
as our meta key since it has several values associated with it.
<?php add_filter( 'the_content', 'tutsplus_get_term_metas' ); function tutsplus_get_term_metas() { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { get_term_meta( $term_id, 'non_unique_key' ); } return $content; }
You can opt to echo the results out to the screen, you can choose to use var_dump, or you can choose to use a debugger to view the information. Whatever the case, you should see something like the following as your results:
array(3) { [0]=> string(15) "my_meta_value_0" [1]=> string(23) "my_meta_value_1_updated" [2]=> string(15) "my_meta_value_2" }
Given this output, you may opt to store it in a variable and then retrieve a certain value from a given index. Or maybe you'd opt to loop through the data and read or manipulate it.
Whatever your use case, this is how you can retrieve all of the information associated with a meta key.
When we talk about retrieving a single piece of metadata, we normally mean that we're looking to retrieve one record from many (as in our example above); however, there may be cases in which we want to retrieve a single meta value associated with a single meta key.
We'll talk about the later case in just a moment. But first, let's cover the case where we want to retrieve a single value from a set of data that has the same term ID and same meta key.
Notice in the code below, we're passing a fourth value, true
:
<?php add_filter( 'the_content', 'tutsplus_get_term_meta' ); function tutsplus_get_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { get_term_meta( $term_id, 'non_unique_key', true ); } return $content; }
And here's what is returned:
string(15) "my_meta_value_0"
Note that this returns the first value that it finds, and it does so in the form of a string.
If there's only one record, then you have two options:
true
.true
.If you opt for the first case, then you're going to get back an array with a single index and a single value. As such, you'll need to grab the value out of the result by doing something like $value = $result[ 0 ]
assuming that you're storing the result of the function call in $result
.
On the other hand, if you opt for the second option, then you can expect to have the result returned to you as a string
.
Arguably, the most important thing to note about approaching the values this particular strategy is that the values are unique given their meta key.
Finally, we need to take a look at removing the associated metadata. And, in keeping consistent with the rest of our examples, this depends on whether there are several pieces of metadata associated with a meta key or a single meta value associated with one meta key.
If you know that there is a single meta key that has several values associated with it, then you can use the following code:
<?php add_filter( 'the_content', 'tutsplus_delete_term_metas' ); function tutsplus_delete_term_metas( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { delete_term_meta( $term_id, 'non_unique_key' ); } return $content; }
And that will update the database table such that it looks like this:
If you've been following along, then you know that this removed all of the data associated with the non_unique_key
meta key.
If you want to delete a single record, then there are two ways to do this:
To that end, we'll take a look at the first example in this section, and we'll take a look at the second example in this section.
To delete a single record in which we know the associated meta value, we can write code that specifies both the meta key and the meta value. For example:
<?php add_filter( 'the_content', 'tutsplus_delete_term_meta' ); function tutsplus_delete_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { delete_term_meta( $term_id, 'my_meta_key', 'my_meta_value' ); } return $content; }
This will remove the row associated with this information from the database.
Finally, if there's a single unique record in which you know the meta key but you don't know the meta value, then you can still delete that record from the database.
All you'll need to specify in the source code is the meta key. See in the following function:
<?php add_filter( 'the_content', 'tutsplus_delete_single_term_meta' ); function tutsplus_delete_single_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { delete_term_meta( $term_id, 'update_key' ); } return $content; }
Astute readers will likely catch that the function above is the same function definition that we provided when deleting records that have all multiple values. And that's because they are the same.
The difference, though, is the intent of the function. A function's intent will often drive how we name the function. In the previous case, we wanted to delete all of the term metadata. In this case, we wanted to delete a single piece of term metadata.
This has implications when it comes to writing quality code and when it comes to writing unit tests.
Here, you're going to find all of the code that we've used throughout this post along with additional comments explaining what's happening in the code. Remember that all of these functions are hooked into the_content
, which means that the functions will fire each time the post is loaded.
As such, the add_filter
calls are commented out so that you can enable them as needed.
<?php //add_filter( 'the_content', 'tutsplus_add_term_meta' ); /** * If we're on the first post and in the category having the * ID of '2', then we add a unique meta key and meta value to * the term metadata. * * @param string $content The post content. * @return string The post content. */ function tutsplus_add_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { add_term_meta( $term_id, 'my_meta_key', 'my_meta_value_changed', true ); } return $content; } //add_filter( 'the_content', 'tutsplus_add_term_metas' ); /** * If we're on the first post and in the category having the * ID of '2', then we add multiple meta values with the same * meta key to the term metadata. * * @param string $content The post content. * @return string The post content. */ function tutsplus_add_term_metas( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { for ( $i = 0; $i < 3; $i++ ) { $meta_value = "my_meta_value_$i"; add_term_meta( $term_id, 'non_unique_key', $meta_value ); } } return $content; } //add_filter( 'the_content', 'tutsplus_update_term_meta' ); /** * Updates the term meta value with the specified key. If the value * doesn't exist, then the record will be created. This will only * be added if the 'Hello World' page is loaded with the category * having the ID of '2'. * * @param string $content The post content. * @return string The post content. */ function tutsplus_update_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { update_term_meta( $term_id, 'update_key', 'my_unique_update_value' ); } return $content; } //add_filter( 'the_content', 'tutsplus_update_term_metas' ); /** * Updates the existing value for the metadata that has the 'non_unique_key' * meta key with the specified meta value. This only happens if we're on the * post with the ID of one and it has the category ID of '2'. * * @param string $content The post content. * @return string The post content. */ function tutsplus_update_term_metas( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { update_term_meta( $term_id, 'non_unique_key', 'my_meta_value_1_updated', 'my_meta_value_1' ); } return $content; } //add_filter( 'the_content', 'tutsplus_get_term_metas' ); /** * If we're on the first post and the post has the category ID of '2' then * retrieve the term meta in the form of an array. * * @param string $content The post content. * @return string The post content. */ function tutsplus_get_term_metas( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { get_term_meta( $term_id, 'non_unique_key' ); } return $content; } //add_filter( 'the_content', 'tutsplus_get_term_meta' ); /** * If we're on the first post and the post has the category ID of '2' then * retrieves the first value from the metadata as a string. * * @param string $content The post content. * @return string The post content. */ function tutsplus_get_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { get_term_meta( $term_id, 'non_unique_key', true ); } return $content; } //add_filter( 'the_content', 'tutsplus_delete_term_metas' ); /** * If we're on the first post and the post has the category ID of '2' then * deletes the meta values associated with the specified key. * * @param string $content The post content. * @return string The post content. */ function tutsplus_delete_term_metas( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { delete_term_meta( $term_id, 'non_unique_key' ); } return $content; } //add_filter( 'the_content', 'tutsplus_delete_term_meta' ); /** * If we're on the first post and the post has the category ID of '2' then * deletes the specified meta value associated with the specified meta key. * * @param string $content The post content. * @return string The post content. */ function tutsplus_delete_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { delete_term_meta( $term_id, 'my_meta_key', 'my_meta_value' ); } return $content; } //add_filter( 'the_content', 'tutsplus_delete_single_term_meta' ); /** * If we're on the first post and the post has the category ID of '2' then * deletes the meta values associated with the specified key. * * @param string $content The post content. * @return string The post content. */ function tutsplus_delete_single_term_meta( $content ) { $category = get_the_category(); $term_id = $category[0]->term_id; if ( 1 === get_the_ID() && 2 === $term_id ) { delete_term_meta( $term_id, 'update_key' ); } return $content; }
It's not at all uncommon to find functions like this hooked into another hook like save_post
or something similar. This is something that we'll cover in more detail in an advanced tutorial later in this year.
For those who have followed this series and the previous series working with the rest of the metadata API, much of the material covered in this series shouldn't be too hard to grasp.
Perhaps the hardest part of working with this API is exercising your creativity on the many ways in which can actually be used. But since we've covered how to work with the API, putting it to work shouldn't be terribly hard.
Remember that in the coming weeks, we are going to look at advanced and proper techniques for writing and reading information into the database so that we're in a position to work with them in a production environment.
In the meantime, if you're looking for other utilities to help you build out your growing set of tools for WordPress or for code to study and become more well-versed in WordPress, don't forget to see what we have available in Envato Market.
Remember, you can catch all of my courses and tutorials on my profile page, and you can follow me on my blog and/or Twitter at @tommcfarlin where I talk about various software development practices and how we can employ them in WordPress.
Please don't hesitate to leave any questions or comments in the feed below, and I'll aim to respond to each of them.
The Best Small Business Web Designs by DesignRush
/Create Modern Vue Apps Using Create-Vue and Vite
/Pros and Cons of Using WordPress
/How to Fix the “There Has Been a Critical Error in Your Website” Error in WordPress
/How To Fix The “There Has Been A Critical Error in Your Website” Error in WordPress
/How to Create a Privacy Policy Page in WordPress
/How Long Does It Take to Learn JavaScript?
/The Best Way to Deep Copy an Object in JavaScript
/Adding and Removing Elements From Arrays in JavaScript
/Create a JavaScript AJAX Post Request: With and Without jQuery
/5 Real-Life Uses for the JavaScript reduce() Method
/How to Enable or Disable a Button With JavaScript: jQuery vs. Vanilla
/How to Enable or Disable a Button With JavaScript: jQuery vs Vanilla
/Confirm Yes or No With JavaScript
/How to Change the URL in JavaScript: Redirecting
/15+ Best WordPress Twitter Widgets
/27 Best Tab and Accordion Widget Plugins for WordPress (Free & Premium)
/21 Best Tab and Accordion Widget Plugins for WordPress (Free & Premium)
/30 HTML Best Practices for Beginners
/31 Best WordPress Calendar Plugins and Widgets (With 5 Free Plugins)
/25 Ridiculously Impressive HTML5 Canvas Experiments
/How to Implement Email Verification for New Members
/How to Create a Simple Web-Based Chat Application
/30 Popular WordPress User Interface Elements
/Top 18 Best Practices for Writing Super Readable Code
/Best Affiliate WooCommerce Plugins Compared
/18 Best WordPress Star Rating Plugins
/10+ Best WordPress Twitter Widgets
/20+ Best WordPress Booking and Reservation Plugins
/Working With Tables in React: Part Two
/Best CSS Animations and Effects on CodeCanyon
/30 CSS Best Practices for Beginners
/How to Create a Custom WordPress Plugin From Scratch
/10 Best Responsive HTML5 Sliders for Images and Text… and 3 Free Options
/16 Best Tab and Accordion Widget Plugins for WordPress
/18 Best WordPress Membership Plugins and 5 Free Plugins
/25 Best WooCommerce Plugins for Products, Pricing, Payments and More
/10 Best WordPress Twitter Widgets
1 /12 Best Contact Form PHP Scripts for 2020
/20 Popular WordPress User Interface Elements
/10 Best WordPress Star Rating Plugins
/12 Best CSS Animations on CodeCanyon
/12 Best WordPress Booking and Reservation Plugins
/12 Elegant CSS Pricing Tables for Your Latest Web Project
/24 Best WordPress Form Plugins for 2020
/14 Best PHP Event Calendar and Booking Scripts
/Create a Blog for Each Category or Department in Your WooCommerce Store
/8 Best WordPress Booking and Reservation Plugins
/Best Exit Popups for WordPress Compared
/Best Exit Popups for WordPress Compared
/11 Best Tab & Accordion WordPress Widgets & Plugins
/12 Best Tab & Accordion WordPress Widgets & Plugins
1 /New Course: Practical React Fundamentals
/Preview Our New Course on Angular Material
/Build Your Own CAPTCHA and Contact Form in PHP
/Object-Oriented PHP With Classes and Objects
/Best Practices for ARIA Implementation
/Accessible Apps: Barriers to Access and Getting Started With Accessibility
/Dramatically Speed Up Your React Front-End App Using Lazy Loading
/15 Best Modern JavaScript Admin Templates for React, Angular, and Vue.js
/15 Best Modern JavaScript Admin Templates for React, Angular and Vue.js
/19 Best JavaScript Admin Templates for React, Angular, and Vue.js
/New Course: Build an App With JavaScript and the MEAN Stack
/Hands-on With ARIA: Accessibility Recipes for Web Apps
/10 Best WordPress Facebook Widgets
13 /Hands-on With ARIA: Accessibility for eCommerce
/New eBooks Available for Subscribers
/Hands-on With ARIA: Homepage Elements and Standard Navigation
/Site Accessibility: Getting Started With ARIA
/How Secure Are Your JavaScript Open-Source Dependencies?
/New Course: Secure Your WordPress Site With SSL
/Testing Components in React Using Jest and Enzyme
/Testing Components in React Using Jest: The Basics
/15 Best PHP Event Calendar and Booking Scripts
/Create Interactive Gradient Animations Using Granim.js
/How to Build Complex, Large-Scale Vue.js Apps With Vuex
1 /Examples of Dependency Injection in PHP With Symfony Components
/Set Up Routing in PHP Applications Using the Symfony Routing Component
1 /A Beginner’s Guide to Regular Expressions in JavaScript
/Introduction to Popmotion: Custom Animation Scrubber
/Introduction to Popmotion: Pointers and Physics
/New Course: Connect to a Database With Laravel’s Eloquent ORM
/How to Create a Custom Settings Panel in WooCommerce
/Building the DOM faster: speculative parsing, async, defer and preload
1 /20 Useful PHP Scripts Available on CodeCanyon
3 /How to Find and Fix Poor Page Load Times With Raygun
/Introduction to the Stimulus Framework
/Single-Page React Applications With the React-Router and React-Transition-Group Modules
12 Best Contact Form PHP Scripts
1 /Getting Started With the Mojs Animation Library: The ShapeSwirl and Stagger Modules
/Getting Started With the Mojs Animation Library: The Shape Module
/Getting Started With the Mojs Animation Library: The HTML Module
/Project Management Considerations for Your WordPress Project
/8 Things That Make Jest the Best React Testing Framework
/Creating an Image Editor Using CamanJS: Layers, Blend Modes, and Events
/New Short Course: Code a Front-End App With GraphQL and React
/Creating an Image Editor Using CamanJS: Applying Basic Filters
/Creating an Image Editor Using CamanJS: Creating Custom Filters and Blend Modes
/Modern Web Scraping With BeautifulSoup and Selenium
/Challenge: Create a To-Do List in React
1 /Deploy PHP Web Applications Using Laravel Forge
/Getting Started With the Mojs Animation Library: The Burst Module
/10 Things Men Can Do to Support Women in Tech
/A Gentle Introduction to Higher-Order Components in React: Best Practices
/Challenge: Build a React Component
/A Gentle Introduction to HOC in React: Learn by Example
/A Gentle Introduction to Higher-Order Components in React
/Creating Pretty Popup Messages Using SweetAlert2
/Creating Stylish and Responsive Progress Bars Using ProgressBar.js
/18 Best Contact Form PHP Scripts for 2022
/How to Make a Real-Time Sports Application Using Node.js
/Creating a Blogging App Using Angular & MongoDB: Delete Post
/Set Up an OAuth2 Server Using Passport in Laravel
/Creating a Blogging App Using Angular & MongoDB: Edit Post
/Creating a Blogging App Using Angular & MongoDB: Add Post
/Introduction to Mocking in Python
/Creating a Blogging App Using Angular & MongoDB: Show Post
/Creating a Blogging App Using Angular & MongoDB: Home
/Creating a Blogging App Using Angular & MongoDB: Login
/Creating Your First Angular App: Implement Routing
/Persisted WordPress Admin Notices: Part 4
/Creating Your First Angular App: Components, Part 2
/Persisted WordPress Admin Notices: Part 3
/Creating Your First Angular App: Components, Part 1
/How Laravel Broadcasting Works
/Persisted WordPress Admin Notices: Part 2
/Create Your First Angular App: Storing and Accessing Data
/Persisted WordPress Admin Notices: Part 1
/Error and Performance Monitoring for Web & Mobile Apps Using Raygun
/Using Luxon for Date and Time in JavaScript
7 /How to Create an Audio Oscillator With the Web Audio API
/How to Cache Using Redis in Django Applications
/20 Essential WordPress Utilities to Manage Your Site
/Introduction to API Calls With React and Axios
/Beginner’s Guide to Angular 4: HTTP
/Rapid Web Deployment for Laravel With GitHub, Linode, and RunCloud.io
/Beginners Guide to Angular 4: Routing
/Beginner’s Guide to Angular 4: Services
/Beginner’s Guide to Angular 4: Components
/Creating a Drop-Down Menu for Mobile Pages
/Introduction to Forms in Angular 4: Writing Custom Form Validators
/10 Best WordPress Booking & Reservation Plugins
/Getting Started With Redux: Connecting Redux With React
/Getting Started With Redux: Learn by Example
/Getting Started With Redux: Why Redux?
/Understanding Recursion With JavaScript
/How to Auto Update WordPress Salts
/How to Download Files in Python
/Eloquent Mutators and Accessors in Laravel
1 /10 Best HTML5 Sliders for Images and Text
/Site Authentication in Node.js: User Signup
/Creating a Task Manager App Using Ionic: Part 2
/Creating a Task Manager App Using Ionic: Part 1
/Introduction to Forms in Angular 4: Reactive Forms
/Introduction to Forms in Angular 4: Template-Driven Forms
/24 Essential WordPress Utilities to Manage Your Site
/25 Essential WordPress Utilities to Manage Your Site
/Get Rid of Bugs Quickly Using BugReplay
1 /Manipulating HTML5 Canvas Using Konva: Part 1, Getting Started
/10 Must-See Easy Digital Downloads Extensions for Your WordPress Site
/22 Best WordPress Booking and Reservation Plugins
/Understanding ExpressJS Routing
/15 Best WordPress Star Rating Plugins
/Creating Your First Angular App: Basics
/Inheritance and Extending Objects With JavaScript
/Introduction to the CSS Grid Layout With Examples
1Performant Animations Using KUTE.js: Part 5, Easing Functions and Attributes
Performant Animations Using KUTE.js: Part 4, Animating Text
/Performant Animations Using KUTE.js: Part 3, Animating SVG
/New Course: Code a Quiz App With Vue.js
/Performant Animations Using KUTE.js: Part 2, Animating CSS Properties
Performant Animations Using KUTE.js: Part 1, Getting Started
/10 Best Responsive HTML5 Sliders for Images and Text (Plus 3 Free Options)
/Single-Page Applications With ngRoute and ngAnimate in AngularJS
/Deferring Tasks in Laravel Using Queues
/Site Authentication in Node.js: User Signup and Login
/Working With Tables in React, Part Two
/Working With Tables in React, Part One
/How to Set Up a Scalable, E-Commerce-Ready WordPress Site Using ClusterCS
/New Course on WordPress Conditional Tags
/TypeScript for Beginners, Part 5: Generics
/Building With Vue.js 2 and Firebase
6 /Best Unique Bootstrap JavaScript Plugins
/Essential JavaScript Libraries and Frameworks You Should Know About
/Vue.js Crash Course: Create a Simple Blog Using Vue.js
/Build a React App With a Laravel RESTful Back End: Part 1, Laravel 5.5 API
/API Authentication With Node.js
/Beginner’s Guide to Angular: Routing
/Beginners Guide to Angular: Routing
/Beginner’s Guide to Angular: Services
/Beginner’s Guide to Angular: Components
/How to Create a Custom Authentication Guard in Laravel
/Learn Computer Science With JavaScript: Part 3, Loops
/Build Web Applications Using Node.js
/Learn Computer Science With JavaScript: Part 4, Functions
/Learn Computer Science With JavaScript: Part 2, Conditionals
/Create Interactive Charts Using Plotly.js, Part 5: Pie and Gauge Charts
/Create Interactive Charts Using Plotly.js, Part 4: Bubble and Dot Charts
Create Interactive Charts Using Plotly.js, Part 3: Bar Charts
/Awesome JavaScript Libraries and Frameworks You Should Know About
/Create Interactive Charts Using Plotly.js, Part 2: Line Charts
/Bulk Import a CSV File Into MongoDB Using Mongoose With Node.js
/Build a To-Do API With Node, Express, and MongoDB
/Getting Started With End-to-End Testing in Angular Using Protractor
/TypeScript for Beginners, Part 4: Classes
/Object-Oriented Programming With JavaScript
/10 Best Affiliate WooCommerce Plugins Compared
/Stateful vs. Stateless Functional Components in React
/Make Your JavaScript Code Robust With Flow
/Build a To-Do API With Node and Restify
/Testing Components in Angular Using Jasmine: Part 2, Services
/Testing Components in Angular Using Jasmine: Part 1
/Creating a Blogging App Using React, Part 6: Tags
/React Crash Course for Beginners, Part 3
/React Crash Course for Beginners, Part 2
/React Crash Course for Beginners, Part 1
/Set Up a React Environment, Part 4
1 /Set Up a React Environment, Part 3
/New Course: Get Started With Phoenix
/Set Up a React Environment, Part 2
/Set Up a React Environment, Part 1
/Command Line Basics and Useful Tricks With the Terminal
/How to Create a Real-Time Feed Using Phoenix and React
/Build a React App With a Laravel Back End: Part 2, React
/Build a React App With a Laravel RESTful Back End: Part 1, Laravel 9 API
/Creating a Blogging App Using React, Part 5: Profile Page
/Pagination in CodeIgniter: The Complete Guide
/JavaScript-Based Animations Using Anime.js, Part 4: Callbacks, Easings, and SVG
/JavaScript-Based Animations Using Anime.js, Part 3: Values, Timeline, and Playback
/Learn to Code With JavaScript: Part 1, The Basics
/10 Elegant CSS Pricing Tables for Your Latest Web Project
/Getting Started With the Flux Architecture in React
/Getting Started With Matter.js: The Composites and Composite Modules
Getting Started With Matter.js: The Engine and World Modules
/10 More Popular HTML5 Projects for You to Use and Study
/Understand the Basics of Laravel Middleware
/Iterating Fast With Django & Heroku
/Creating a Blogging App Using React, Part 4: Update & Delete Posts
/Creating a jQuery Plugin for Long Shadow Design
/How to Register & Use Laravel Service Providers
2 /Unit Testing in React: Shallow vs. Static Testing
/Creating a Blogging App Using React, Part 3: Add & Display Post
/Creating a Blogging App Using React, Part 2: User Sign-Up
20 /Creating a Blogging App Using React, Part 1: User Sign-In
/Creating a Grocery List Manager Using Angular, Part 2: Managing Items
/9 Elegant CSS Pricing Tables for Your Latest Web Project
/Dynamic Page Templates in WordPress, Part 3
/Angular vs. React: 7 Key Features Compared
/Creating a Grocery List Manager Using Angular, Part 1: Add & Display Items
New eBooks Available for Subscribers in June 2017
/Create Interactive Charts Using Plotly.js, Part 1: Getting Started
/The 5 Best IDEs for WordPress Development (And Why)
/33 Popular WordPress User Interface Elements
/New Course: How to Hack Your Own App
/How to Install Yii on Windows or a Mac
/What Is a JavaScript Operator?
/How to Register and Use Laravel Service Providers
/
waly Good blog post. I absolutely love this…