<?php /*
Template Name: Plugin List page

You might need to tinker with the header/sidebar/footer to match your theme.
*/
$viperspluginsused = new viperspluginsused();
$theme_filename=TEMPLATEPATH "/style.css";
$theme_data get_theme_data($theme_filename);
?>
<?php get_header
(); ?>
<style type="text/css" media="screen">
    #pluginstable {
        width: 100%;
        border-spacing: 3px;
    }

    #pluginstable td {
        border: 1px solid black;
        padding: 3px;
        font-size:0.8em;
    }

    #pluginstable th {
        padding: 3px;
    }
</style>
<?php get_sidebar(); ?>

<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
            <h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
<div class="contenttext">

<p>Often, I come across other blogs/websites built using WordPress. On a few occasions, I've seen a really cool or unique feature on their site which I want to have on mine.  More often than not, the plugin is something freely and publicly available. Unfortunately, you really have to know where to look, as well as what to look for, in order to get the plugin.  To me, that's a hassle; there's been a few cases in which I had no idea what the plugin was called, what I should search for, or even where to look.</p>
<p>In order to solve this dilemma, I propose that all WordPress users create a new page, like I have done, listing the plugins used on the site.  Obviously, some plugins won't ever be seen by the end user, but that's no reason not to list them.  Not only does listing the plugins you use help other WordPress users, it also is a way of thanking the authors of the plugins.</p>
<p>If you are also a WordPress user and wish to follow my example, please create a new page with the slug: wordpress-plugin-list.  By standardizing the file name, it'll make it easier to find other users plugin lists. </p>
<p>I've found the easiest way to make the list is to get the plugins-used plugin by viper. You can find it in the list below. You will also need to use a custom template page to get this to work properly with vipers plugin.  I've created an example template that should work fine with the default WordPress theme.  You can get it <a href="http://www.masterslate.org/wp-content/pluginpage.phps">here</a>.</p>
<p>If you decide to make your own plugin list, please trackback to me once you've done it.  As of this writing, one issue that exists in WordPress is that "Pages" do not have a trackback ping field. However, I have created a plugin which will allow trackbacks on "Pages."  Please get <a title="link to get plugin" target="_blank" href="http://www.masterslate.org/2006/09/16/wordpress-trackback-for-pages-plugin/">Wordpress Trackback for Pages Plugin</a> to enable this functionality.</p>
<p>I think I've done enough blabbering about my opinions on this matter for now, so I present to you the list of WordPress plugins I use.</p>
<p>I currently use <?php echo $viperspluginsused->plugincount(); ?> plugins:</p>
<p>
<?php //$viperspluginsused->output_list(TRUE, FALSE);
$viperspluginsused->output_table('id="pluginstable" class="pluginstable"'FALSE,FALSE);
?>
</p>
<br/>
<p>My current theme as of this writing is <strong><?php echo $theme_data['Title'];?> by <?php echo $theme_data['Author'];?>.</strong></p>
<p>I hope that this listing has helped and inspired some of you to try some of the plugins I've listed. Please leave any feedback about this article below.</p>

<?php edit_post_link('Edit this entry.''<p>''</p>'); ?>
<?php link_pages
('<p><strong>Pages:</strong> ''</p>''number'); ?>
        </div>
<?php comments_template(); // Get wp-comments.php template ?>

    </div>
</div>

<?php endwhile; endif;?>
<?php get_footer
(); ?>