Web development tutorials.

  • Create a WordPress Child Theme

    Create a WordPress Child Theme

    Create a theme that inherits the look and feel of the parent theme and all of it’s function. This theme is called a Child Theme. Customizations will be kept separate from the parent theme’s files, thus, upgrading the parent theme will not affect the customizations made on the site. In other words, it will be…

    Read more

  • Get Started With jQuery in 2 Simple Steps

    Get Started With jQuery in 2 Simple Steps

    Learn how to use jQuery in 2 simple steps. This tutorial will help you know how to quickly initialize jQuery in your HTML page. Step 1. Include the jQuery library into your HTML page. There are two ways to include the jQuery library into an HTML page. First you can download it and store it…

    Read more

  • Create New HTML Elements With jQuery

    Create New HTML Elements With jQuery

    With jQuery, it’s not so hard to create HTML elements. All that is needed is to use the dollar sign function $() to initialize the element. And from there, other options can be attached like adding a CSS class, attribute id, and text to name a few. Requirements: jQuery How to create a new div…

    Read more

  • Make WP Custom Columns Sortable

    Make WP Custom Columns Sortable

    Next good and useful thing to do after adding a new custom column to the Posts Manage Page of the WordPress Admin Page is to make it sortable. This is a continuation of the tutorial Add New Columns To WP Posts Manage Page, thus we will be updating the function where the hook manage_posts_columns is…

    Read more

  • Add New Columns To WP Posts Manage Page

    Add New Columns To WP Posts Manage Page

    WordPress Post Manage Page is the page where posts are being managed. This page list all post that can be group into Published, Draft, and Pending. You can also edit a post, trash a post, and add a new post. Each post on the list contains basic information such as the Title, Author, Categories, and…

    Read more

  • Get WP Post Meta Value Of A Given Meta Key

    Get WP Post Meta Value Of A Given Meta Key

    Get the post meta_value of a given meta_key in WordPress. You can also use this to get the value of a custom meta field of a post. Requirements: WordPress Syntax. get_post_meta( $post_id, $key, $single ); Where. $post_id ( int Required ) is the Post ID. $key ( string Optional ) is the meta_key to retrieve,…

    Read more