Tag Archives: add_action

WordPress 3.0 and add_action

It seems as though, with WordPress 3.0, the add_action function (in some cases) has become a little more strict. Tag Grouping has a call to save_post that worked perfectly in WordPress 2.9 and up but broke completely once WordPress 3.0 … Continue reading

Posted in HTML, MS-SQL, MySQL, PHP, Tag Group Plug-in, Wordpress | Leave a comment

Adding AJAX to your WordPress plug-in

AJAX is a great way to add some ease of use functionality to your plugin by updating part of a page based on user input. I use it for updating a list of checkboxes in the example below when a … Continue reading

Posted in Wordpress | 2 Comments

Add JavaScript to your WordPress plugin.

Instead of putting your javascript in-line with the rest of your html, it is recommended that you use the WordPress API to add the scripts in a managed way. I experienced this recently while developing the Tag Grouping plug-in. Before … Continue reading

Posted in Wordpress | Leave a comment