Hello friends, here i write some guidelines for developing plugin and theme for WordPress. I inspired to write this article when i am facing some problems when developing plugin or theme for WordPress or using third party WordPress plugins and themes. Below are the some guidelines which i learn myself and share with you. Notes… Continue reading Guidelines for developing plugin or theme for WordPress
Category: PHP
Display custom taxonomy in dropdown list or link format
Basically, we use get_terms() method to display custom taxonomy in dropdown list or link format. We get all terms of custom taxonomy in array format and then we are display terms in dropdown list or in link format using foreach loop. Here, i will show you how we can display custom taxonomy in dropdown list… Continue reading Display custom taxonomy in dropdown list or link format
Display category and post list in WordPress
Hello friends, Today we learn how to display all category list and each category list contain own post list. This example also work for all custom taxonomies and custom post types. Here is simple example, Category 1 Post 1 Post 2 Category 2 Post 3 Post 4 Below is simple code for display category -… Continue reading Display category and post list in WordPress
PHP script for creating the CAPTCHA functionality
You can see CAPTCHA ("Completely Automated Public Turing test to tell Computers and Humans Apart") functionality on many websites to prevent spam contents. CAPTCHA is used exclusively in applications where the user input is required. These applications include Blogs, Forums and Portals. In this article I will demonstrate how to create a simple CAPTCHA functionality using php… Continue reading PHP script for creating the CAPTCHA functionality