Plugins Archives

  1. WordPress Autosave

    Recently I was having an issue with the WordPress autosave running on my posts in a custom post type.  I am running a lot of scripts in the “save_post” action and couldn’t find a good way to exclude autosaves from running this code. Note that I looked at the info being passed to the functions…

  2. Code to Widget Updated to 1.1.1

    After some discussions with coworkers and a plugin user, I realized the plugin needed a little more documentation on the template directory.  I have added some absolute paths to the plugin settings screen for easier reference. I also added a button to test and make sure that the directory is usable for the plugin.  It…

  3. Code To Widget Plugin Released

    I’m very happy to announce the release of the Code To Widget WordPress plugin.  The plugin reads files in a directory and automatically creates widgets to be placed in sidebars.  It gives developers/designers the ability to create widgets without having to write the widget code every time. This plugin was initially written out of frustration.…

  4. TIL: Adding Admin Menu Pages

    When using functions like add_submenu_page etc, make sure that you add them at the admin_menu action. If you try to add them any place other than that you will get “Insufficient Privileges” errors when trying to go to the page. NOTE: If you are in WP 2.8 WordPress allows you to run those functions at…