Fri 8 Sep 2006
Direct quotes from WordPress's website
Plugin Installation
To install a plugin, the following are the general directions to follow. Be sure and follow the specific instructions provided by the Plugin author. Remember: BACKUP - just in case.
- Read through the "readme" file thoroughly that usually accompanies a plugin, or the website article from where you found the plugin. It is often helpful to print out the instructions so you can check off the installation steps as you complete them.
- Upload the plugin to the wp-content/plugins folder in your WordPress directory online.
- Make any changes to templates or files as required by the Plugin instructions including adding Plugin template tags.
- Activate the Plugin:
- Access the Plugin Panel in your Admin Panel
- Scroll down through the list of Plugins to find the newly installed Plugin (if not visible, start from the beginning to check to see if you followed the instructions properly and uploaded the file correctly).
- Click on the Activate link to turn the Plugin on.
- Continue making any modifications necessary from the "readme" file instructions to make the plugin's actions meet your needs.
Hiding Plugins When Deactivated
Some plugins feature tags inside of the template files. If the plugin is not activated, it will "break" the Theme and it may report errors or fail to load. It is therefore imperative to prevent the plugin from being detected in case it is turned off.
To detect if a plugin is installed, you can use a simple function_exists() check. The if (function_exists()) checks for the plugin, and if it exists, it will use it. If it returns FALSE or "not found", it will ignore the plugin tag and continue loading the page.
-
<?php
-
FUNCTION_NAME();
-
}
-
?>
This example plugin uses a function called jal_get_shoutbox() to print out its contents.
-
<?php
-
jal_get_shoutbox();
-
}
-
?>
Troubleshooting Plugins
If you are experiencing problems with a plugin you installed or one that stopped working after upgrading, the following are the steps you need to take to troubleshoot the plugin:
- Check that you have followed the plugin author's instructions to the letter.
- Check that any plugin tags or usage within your template files are correct, spelled right, and placed in the appropriate place, i.e., within the WordPress Loop or outside of it.
- Check that you uploaded the file to the plugins folder under wp-content. If you are uploading a new version to replace the old, delete the old version prior to uploading the new one.
- Check that the plugin has been activated in your Plugin Panel of your Administration Panels.
- Deactivate and re-activate the plugin to see if this makes it work.
- Visit the plugin author's website, typically linked from the Plugin Panel, and look to see if someone else is having the same trouble and an answer has been posted, or a new version released.
- Contact the plugin author directly via their website or email requesting assistance.
- Search the Internet for the name of the plugin and the trouble you are having as someone else might have had the same problem and found a fix and posted it on their site.
- Visit the WordPress Support Forum (http://www.wordpress.org/support) and post a clear question about the plugin and the problem you are having and you may get an answer from someone familiar with the plugin.
- If the problem persists and you cannot seem to solve it, check to see if there are any similar plugins that you can try instead.

