pluginsUsedPlugin

This plugin allows you to easily display a list of the plugins that you use, along with a link to their plugin URLs. Example usage might be the following for a very simple page listing information about the plugins being used:

<html><body> 
<?php  
require('./wp-blog-header.php'); 
displayPluginsAsTable(); 
?> 
</body></html> 

Or, on a template page or other place, the sidebar/menu one might have something like the following:

 <li id="plugins">Plugins: 
        <?php displayPluginsAsList(); ?> 
 </li> 

So, as you can see, two functions are provided,

  • displayPluginsAsTable()
  • displayPluginsAsList()

neither take any arguments and both print their output directly.

The code for the plugin can be found at https://www.andrewsw.com/text/pluginsUsedPlugin.txt rename it so it ends in .php and put it in your wp-content/plugins directory. Activate it from within the plugins administration interface that is part of WordPress and you should be good to go to use those functions in your templates.

To use them in the static pages available within WordPress 1.5, you need to have the RunPHP WordPress plugin installed and, for that page, have the “eval” checkbox checked.