quartz
Forum Replies Created
-
Forum: Plugins
In reply to: restore deleted directory pluginUpdate : that plugin will be deleted permanantly.
Subject closed.
Forum: Plugins
In reply to: [Wordpress Users List] Where to put code?The default usage is paste this code in the theme file where you want the list to be displayed. <?php wpul_get_users(); ?>
Forum: Plugins
In reply to: [Wordpress Users List] Where to put code?Hi you can’t put php code and execute it in your text page unless you add a plugin that wiil do that.
I was able to load the list from the text page when using plug-ins Exec-PHP and WP-No-Format with this text in html in editor.
<!– noformat on –>
<style>#wpul img
{
padding:2px;
float: left;
}
#wpul ul { margin-left: 20px; margin-bottom: 0; }
#wpul li { padding: 0;}
#wpul
{
font-size:12px;
color:#f00;
padding:3px;
}
#wpul .wpuluserbox {
background-color: #fff;
color:#000;
border: 1px solid black;
margin:2px;}
#wpul .wpulusername {
width:99%;
vertical-align: middle;
float:left;
color: #000;
margin:2px;
}
#wpul .username {
font-weight:bold;
}
#wpul .registered {
color:#ccc;
font-size:10px;
}
#wpul a:link {
color: #000;
}
#wpul a:visited {
color: goldenrod;
}
#wpul a:hover {
color: goldenrod;
}
#wpul a:active {
color: #f00;
}
</style>
<?php wpul_get_users(); ?>
<!– noformat off –>Steve