In this tutorial I will show you how you can add a status text next to the post title based on a condition. There are two different ways you can handle this: Show the status text dynamically when WordPress is rendering the post title. Update the post title text in the wp_posts database … [Read more...] about Add a Status Text Next to Your WordPress Post Title
Adding Your Own Custom Fields in the Software License Manager Plugin
This is a tutorial for the Software License Manger plugin. This tutorial is aimed at advanced WordPress Plugin developers. Lets say, you want to create an extension or a custom plugin to add couple of extra fields to save some info with each of the license keys. Below is a guideline on how to … [Read more...] about Adding Your Own Custom Fields in the Software License Manager Plugin
WordPress Plugin – Cite the Source for Images Attached to Your WordPress Posts
WordPress is clever with data storage in that it likes to avoid redundancy. And since, arguably speaking, storing data like the content of posts, in a database is a handy thing, so is storing "other data" within the same field and table structure. While I (Keith here) don't want to get into how … [Read more...] about WordPress Plugin – Cite the Source for Images Attached to Your WordPress Posts
Upgrading the Core WordPress Custom Menu Widget
In this article, I walk through upgrading the Custom Menu widget for WordPress to offer the ability to use the Menu Name as the Title for the menu, without the redundancy of having to retype it. I do not hack the core to make these changes. I add code to the functions.php file of a child theme. That … [Read more...] about Upgrading the Core WordPress Custom Menu Widget
Query or show a specific post in wordpress
If you are looking for php code or a plugin for your Wordpress that takes a post ID and returns the database record for that post then read on. This is very helpful when you want to show a specific post on your homepage or other pages to get more attention. It allows you to design your homepage or a … [Read more...] about Query or show a specific post in wordpress