• Hi,

    i would like to display the plug-ins that i use on my site on a WP 1.5 static page using the “pluginsUsed” plug-in.

    So i just put

    <h2>WP Plug-ins</h2>

    This is a list of the WordPress plug-ins i currently use here at teezeh dot info. It's being automatically generated by one the plug-ins itself...

    <?php displayPluginsAsTable(); ?>

    in as the desired page content.

    When i save this, a blank space is being inserted between the opening bracket and the question mark. The result i a faulty page with the PHP code being displayed instead of the desired plug-ins table.

    When i edit the post in the database using phpMyAdmin and remove the blank, i get a page with my intro, but without the table.

    pluginsUsed is installed – is it not compatible with 1.5? Or have i done anything wrong/forgotten something??

    Please help me out…

    Best regards, Thomas

    P.S: I’m running the latest nightly (01-09)

Viewing 5 replies - 1 through 5 (of 5 total)
  • php is not run inside of a posting (unless you use a plugin that enables it). As a work around. Create a new template page (stupid example below for default/kubrick) save it in your theme directory and use it as the template in your new ‘static page’.

    <?php
    /*
    Template Name: Plugins
    */
    get_header(); ?>
    <div id="content" class="widecolumn">
    <h2>Plugins:</h2>
    <?php displayPluginsAsTable(); ?>
    </div>
    <?php get_footer(); ?>

    For more info on static pages you can search ?? or look at https://www.ads-software.com/support/topic.php?id=15853

    Does anyone know where this PluginsUsed plugin can be found? A quick Google search brings up several places, but they all point to Andrew Chen’s page, which has been taken down. The plugin is also not available on either wp-plugins.net or dev.wp-plugins.org. I’ve even asked people who have the plugin and no one is willing to share it! Does anyone know where this plugin can be found? If not, and you have it, would you mind sharing it? Please help me out; I’d be most grateful.

    I concur with Karsh.

    Also, you can embed pluginsUsed inside a WP page using the wp-exec plugin.

    https://www.navidazimi.com/projects/wp-exec/

    Yay! Andrew’s page is back up and I was able to find the plugin there. Navid, your plugin sounds awesome and I will definitely check it out for implementation.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘pluginsUsed on 1.5 page’ is closed to new replies.