Using Javascript and CSS in WordPress Plugin
Most of blogs out there are suggesting that to use following line to reference javascript files like jquery in your wordpress plugin.
<?php wp_enqueue_script("jquery"); ?>
Web Application Development and Engineering
Most of blogs out there are suggesting that to use following line to reference javascript files like jquery in your wordpress plugin.
<?php wp_enqueue_script("jquery"); ?>
Headching by just looking at the title?
When I first started programming in wordpress, I was really confused by the query tools that are at our disposal, wondering that if there is any difference between them and what is the difference. Read the rest of this entry »
There are many discussions about wordpress plugin dependencies handling, there is also a plugin to allow you set up dependency relations between plugins. In my view, plugin dependencies are not something you will face very often, and in some cases you do need to require other plugins for your one to work, I would rather deal with it in a more personal way that is to handle it privately in that dependent plugin Read the rest of this entry »
As a wordpress plugin developer, it is very handy to provide an option page or admin page for your plugin, in essence this page is a standard php page, you can do postback to collect user data to save them in the database or for what ever reason. Read the rest of this entry »
As a programmer you might have to manage several wordpress installs for your customers, when problem comes up, you also need to quickly setup a development environment to pinpoint the cause through debugging. In essence it is an issue of backup and restore of an application, by putting it into a repository of version control system, it gives us a safer option we can provide to our customer, and more importantly without a version control system it is impossible for multiple users to work on same wordpress project including customers who are making content contributions Read the rest of this entry »