In the previous article, we discussed working with post metadata in WordPress using the provided APIs. We also covered a variety of tools, the ideas of security, and what would be required in order to set up the environment in which to work with the code that would be provided throughout the tutorial.
If you haven't read that article, then I highly recommend reviewing it not only because it covers how to work with post metadata, but also because it hits on some important topics that are relevant to the remainder of the articles in this series (and it alludes to some that are to come later this year).
Assuming you're all caught up and ready to learn about another one of the metadata APIs, then let's get started with the WordPress User Meta API.
Recall from earlier in this series, WordPress defines metadata in the following way:
Meta-data is handled with key/value pairs. The key is the name of the meta-data element. The value is the information that will appear in the meta-data list on each individual post that the information is associated with.
As we continue to work with the various metadata APIs, you're going to find that this definition holds true no matter which API is being explored.
The nice thing is that once you've gotten a handle on tackling one metadata API, you have a general idea for how each of the related APIs will work. Sure, there may be nuances here and there, but the general functionality will be the same.
When looking at the WordPress Post Meta API, we reviewed and used the following functions:
add_post_meta
update_post_meta
get_post_meta
delete_post_meta
Yes, there are idiosyncrasies among them, especially as it relates to how add_post_meta
and update_post_meta
work and the various ways get_post_meta
and delete_post_meta
work, and the APIs we're about to examine will work much in the same fashion.
For the remainder of this article, I'm assuming that you have a local web server, access to a database front-end, an IDE, and that you're comfortable working with the file tutsplus-metadata.php
.
If you're curious, I'll be using the following set of tools:
Note that the user metadata will be stored in the wp_usermeta
database table, so we'll be referencing that in any screenshots of the database. Unlike the initial post metadata table, there's actually some data already in the user metadata table.
This is because of some of the data that's stored on the user profile screen:
Nonetheless, the API is going to allow us to write our own information to the table. So with all of that said, let's go ahead and take a look at how to work with the functions provided by WordPress.
Note that through all of the examples given, we are going to be passing 1
for the first parameter to the API functions since the first user is always the site administrator. This is generally guaranteed to be present in any given installation.
You can find a reference to the add_user_meta
function in the Codex. The definition of the function is about as succinct as possible:
Add metadata to a user's record.
How beneficial is this? That is, if you were to be working on a plugin or a web application that's built on WordPress and you're looking to extend what a person is able to associate with their profile, then this is one way to do it.
It could be something as simple as providing a user's profile on a given social network, or it could be something more advanced where you may be associating the user with data contained in another table, an array of information, or something else.
Regardless, this is how you go about doing that. Here's the thing, though: Remember how writing metadata for a post using the add_post_meta
function resulted in multiple rows being able to be written using the same key?
The same thing is possible using add_user_meta
. However, the API function accepts an optional fourth parameter on whether or not a the value being inserted should be unique or not.
So first, let's take a look at the code for adding some user metadata, and let's do so by not specifying that it should be unique.
The code for doing this will look like this:
<?php add_action( 'the_content', 'tutsplus_add_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * adds non-unique user meta data to the database. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_add_user_meta( $content ) { if ( 1 === get_the_ID() ) { add_user_meta( 1, 'twitter_account', 'https://twitter.com/tommcfarlin/' ); } return $content; }
Note that we're using the same strategy as employed earlier in this series:
the_content
.$content
to WordPress.With this code in place and with the Hello World post loaded in your browser, refresh the page a few times.
Once done, the resulting database table will look like this:
As I said, it's very similar to how the post metadata API performs.
Using your database front-end, delete the rows that were created or feel free to choose a new key (perhaps something like instagram_username
). I'm going to be deleting the rows.
Secondly, I'm also going to be creating a second function rather than changing the one above so that I can offer the complete source code at the end of the tutorial, so read the following code closely:
<?php add_action( 'the_content', 'tutsplus_unique_add_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * adds unique user meta data to the database. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_unique_add_user_meta( $content ) { if ( 1 === get_the_ID() ) { add_user_meta( 1, 'twitter_account', 'https://twitter.com/tommcfarlin/', true ); } return $content; }
First, provide a unique value for the meta value (or the third argument) in the function call. Refresh the page a few times, and then take a look at the database. It should look something like this:
Notice what's interesting? There are still multiple values, but they are all the same.
Now try changing the meta value argument a couple of times, and then take a look at the database and you should see something like this:
Notice the difference? Exactly—there isn't one. That's because we said there could only be a unique key. So it doesn't necessarily mean that only one record is created. It means that multiple records will be created when the function is called, but it will always use the first value that it stored that's associated with said key.
If you'd like, go ahead and delete the rows that we just created as this provides a great segue into the next function.
In similar fashion to how the Post Meta API works, the update functionality works in the following way:
Update user meta field based on user ID. Use the $prev_value parameter to differentiate between meta fields with the same key and user ID. If the meta field for the user does not exist, it will be added.
When working with this function, it helps to think about this in two scenarios:
add_user_meta
function and there are multiple records with the same informationIn the first case, it helps to provide the $prev_value
because you're telling WordPress which value to target and to update.
For example, assume that our database looks as it did earlier in the tutorial:
And we want to update the records that have the previous value of https://twitter.com/tommcfarlin/
. To do that, then we'd update the code that looks like this.
<?php add_action( 'the_content', 'tutsplus_update_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * updates user meta data with the specified previous value. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_update_user_meta( $content ) { if ( 1 === get_the_ID() ) { update_user_meta( 1, 'twitter_account', 'https://twitter.com/tutspluscode/', 'https://twitter.com/tommcfarlin/' ); } return $content; }
And then the update to the database would look like this:
Note that this updates all values that are associated with this meta key. Of course, that's only one use of the function.
In the second case, you're not going to need to specify a previous value because you're going to be adding information for the first time.
To clarify, you can use the update_user_meta
function when you want to add information to the database. It doesn't have to exist prior to using it.
This is useful whenever you want to add a single, unique record that has yet to be added to the database. Using the function is simple. Let's say we want to save the user's sibling's name.
In this case, we'd do this:
<?php add_action( 'the_content', 'tutsplus_unique_update_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * updates user meta data with the specified value. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_unique_update_user_meta( $content ) { if ( 1 === get_the_ID() ) { update_user_meta( 1, 'siblings_name', 'Ben' ); } return $content; }
And this results in the following record being entered into the database:
If you refresh the page several times and then check your database table, you'll notice that only a single instance of the value is written versus multiple values that come when using add_user_meta
.
Then if we wanted to ever change that value, we'd update the meta value associated with the specified meta key and it would update that single record.
When it comes to retrieving user metadata, we have the get_user_meta
function. At this point, it should be clear that the expected parameters will be the user ID and the meta key.
But what about the meta value?
Remember when we're retrieving information, we only need the user ID and the meta key since that's the identifying information for a specific value.
But what happens if the developer has multiple records for a single key? More specifically, what if they've used the add_user_meta
function as we've done above and have multiple records?
This is where the optional fourth parameter comes into play: a boolean value that we specify if we want to retrieve a single value or an array of values. The default value (the one that's passed if it's not specified) is false
so we'll always get back an array unless we specify otherwise.
Let's assume that we're working off the same set of data from earlier in the tutorial. That is, we have multiple entries for a user's Twitter account. Recall that the database looked like this:
In order to get all of this information out of the database and displayed on the screen, we'd use the following code:
<?php add_action( 'the_content', 'tutsplus_get_all_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * retrieves all user meta data for the admin user and the specified key. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_get_all_user_meta( $content ) { if ( 1 === get_the_ID() ) { var_dump( get_user_meta( 1, 'twitter_account' ) ); } return $content; }
Assuming all went well, then you should see something like this at the top of your Hello World post:
{ [0]=> string(32) "https://twitter.com/tommcfarlin/" [1]=> string(32) "https://twitter.com/tommcfarlin/" [2]=> string(32) "https://twitter.com/tommcfarlin/" [3]=> string(32) "https://twitter.com/tommcfarlin/" }
If not, double-check the call to var_dump that you've made, and make sure that the information is in the database ready to be retrieved.
In the case that you want to retrieve a single record, then you can pass true as the final parameter to the function. This will retrieve the first record that was created in string format.
<?php add_action( 'the_content', 'tutsplus_get_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * retrieves a single record of user meta data for the admin user and * the specified key. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_get_user_meta( $content ) { if ( 1 === get_the_ID() ) { echo esc_textarea( get_user_meta( 1, 'twitter_account', true ) ); } return $content; }
And the result of this code will print this out at the top of the Hello World post from which we've been working:
https://twitter.com/tommcfarlin/
Note that if you're using update_user_meta
and you don't specify true
as the final parameter, you will get a single-index array handed back to you.
array(1) { [0]=> string(32) "https://twitter.com/tommcfarlin/" }
Thus, if you're looking for a string representation of information, always pass true
.
The last thing that we need to cover is how to actually delete the data that we've written to the database. If you've followed along with this series thus far, then you're likely developing some sort of intuition as to how this particular function is going to work.
From its accompanying Codex page:
Remove metadata matching criteria from a user. You can match based on the key, or key and value. Removing based on key and value, will keep from removing duplicate metadata with the same key. It also allows removing all metadata matching key, if needed.
Note that this function is designed to work in the case where there are multiple records that exist and you want to delete them all, or when you have a single record that exists and you want to remove it.
First, we'll take a look at how to use this function when there are multiple records with the same information. Let's assume, for the purposes of this example, the database looks something like this:
Here, we have multiple records. In order to delete records having the same key, we use a single call to the delete_user_meta
function and pass the user ID and the meta key.
<?php add_action( 'the_content', 'tutsplus_delete_all_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * deletes all associated meta data with the specified key. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_delete_all_user_meta( $content ) { if ( 1 === get_the_ID() ) { delete_user_meta( 1, 'twitter_account' ); } return $content; }
And if you refresh the information in the database table, you'll note that all of the records have been erased:
Though this is an easy function to use, it is important to remember that it can delete multiple rows in a single call, so use it with care.
If, on the other hand, you have a single record to delete, then you need three pieces of information:
Having all three values will allow you to delete a single record. Clearly, it allows for much more precision than the previous use of this function.
So, in our example, let's say that we have two records, both of which have the twitter_account
meta key. Each key has the following value:
In our example, we're only concerned with removing the second value. To do that, we'll use the following code:
<?php add_action( 'the_content', 'tutsplus_delete_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * deletes a single record based on the specified meta key and meta value. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_delete_user_meta( $content ) { if ( 1 === get_the_ID() ) { delete_user_meta( 1, 'twitter_account', 'https://twitter.com/pressware' ); } return $content; }
And then if you refresh your database, you should see the following (or something similar):
It's nice when an API performs exactly as you expect.
Here's a copy of all of the source code that we covered in this article. Please note that the add_action
calls have been commented out as you'll need to uncomment them based on what you want to do when experimenting with the code.
<?php /** * This file shows how to work with the common User Meta API functions. * * Namely, it demonstrates how to use: * - add_user_meta * - update_user_meta * - get_user_meta * - delete_user_meta * * Each function is hooked to 'the_content' so that line will need to be * commented out depending on which action you really want to test. * * Also note, from the tutorial linked below, that this file is used form * demonstration purposes only and should not be used in a production * environment. * * Tutorial: * http://code.tutsplus.com/tutorials/how-to-work-with-wordpress-user-metadata--cms-25800 * * @version 1.0.0 * @author Tom McFarlin * @package tutsplus_wp_metadata */ // add_action( 'the_content', 'tutsplus_add_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * adds non-unique user meta data to the database. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_add_user_meta( $content ) { if ( 1 === get_the_ID() ) { add_user_meta( 1, 'twitter_account', 'https://twitter.com/pressware' ); } return $content; } // add_action( 'the_content', 'tutsplus_unique_add_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * adds unique user meta data to the database. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_unique_add_user_meta( $content ) { if ( 1 === get_the_ID() ) { add_user_meta( 1, 'twitter_account', 'https://twitter.com/photomatt/', true ); } return $content; } // add_action( 'the_content', 'tutsplus_update_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * updates user meta data with the specified previous value. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_update_user_meta( $content ) { if ( 1 === get_the_ID() ) { update_user_meta( 1, 'twitter_account', 'https://twitter.com/tutspluscode/', 'https://twitter.com/tommcfarlin/' ); } return $content; } // add_action( 'the_content', 'tutsplus_unique_update_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * updates user meta data with the specified value. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_unique_update_user_meta( $content ) { if ( 1 === get_the_ID() ) { update_user_meta( 1, 'siblings_name', 'Ben' ); } return $content; } // add_action( 'the_content', 'tutsplus_get_all_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * retrieves all user meta data for the admin user and the specified key. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_get_all_user_meta( $content ) { if ( 1 === get_the_ID() ) { var_dump( get_user_meta( 1, 'twitter_account' ) ); } return $content; } // add_action( 'the_content', 'tutsplus_get_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * retrieves a single record of user meta data for the admin user and * the specified key. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_get_user_meta( $content ) { if ( 1 === get_the_ID() ) { var_dump( get_user_meta( 1, 'twitter_account' ) ); } return $content; } // add_action( 'the_content', 'tutsplus_delete_all_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * deletes all associated meta data with the specified key. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_delete_all_user_meta( $content ) { if ( 1 === get_the_ID() ) { delete_user_meta( 1, 'twitter_account' ); } return $content; } add_action( 'the_content', 'tutsplus_delete_user_meta' ); /** * Determines if the current post is the default 'Hello World' post and, if so, * deletes a single record based on the specified meta key and meta value. * * @param string $content The post content. * @return string $content The post content. */ function tutsplus_delete_user_meta( $content ) { if ( 1 === get_the_ID() ) { delete_user_meta( 1, 'twitter_account', 'https://twitter.com/pressware' ); } return $content; }
Additionally, feel free to add this to the file that we created in the previous tutorial. That's what I did when working on the examples; however, you may want to be careful when working on the file so that the proper add_action
calls are set based on what it is you'd like to do.
As mentioned earlier in the article, you can review each of the functions in the WordPress Codex, which should always be a click away for a WordPress developer.
In the final article in this series, we're going to take a look at how to deal with comment metadata. Given what we've learned so far, it should be something that's relatively easy to pick up.
Of course, that still leaves us with metadata related to taxonomies. Because of the nature of taxonomies, terms, and the APIs, we'll be reviewing those in follow-up series.
For now, continue to experiment with the code that's been provided in this article. Remember that it's meant for demonstration purposes only and should not be run in a production environment.
Throughout this series, we're trying to lay a foundation for future WordPress developers to build from when they go forward and work on solutions for their employer, their clients, or for their own projects.
With that said, I'm looking forward to continuing this series. Remember if you're just getting started, you can check out my series on how to get started with WordPress, which focuses on topics specifically for WordPress beginners.
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.
Finally, you can see all of my courses and tutorials on my profile page, and you can read more articles about WordPress and WordPress development on my blog. Feel free to follow me on Twitter as well 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…