How to write a WordPress plugin to notify your customers via Twitter.
Thursday, July 3rd, 2008WordPress has a page on “Writing a Plugin” that you can refer to for all the gory details; this post is a quick demonstration of how you too can notify people of updates to your Blog via Twitter. Add your handlers: add_action('edit_form_advanced','notify_customers_checkbox'); add_action('save_post','notify_customers'); Add some check boxes to the “Write Post” interface: function notify_customers_checkbox() { ?> <fieldset id="notify_customers" ...