dataspot
Forum Replies Created
-
Forum: Plugins
In reply to: using wp_list_authors in a pageThat answered my question, I think. I didn’t know you could have different page templates! Learn something new every day.
Thanks.
Edit: Actually, I’d like to place the authors list where the content would normally go on a page. Where in the page template would I place the code?
Forum: Plugins
In reply to: using wp_list_authors in a pageMeaning not on the sidebar.
Forum: Fixing WordPress
In reply to: slashes appearing in user descriptionHum, suddenly it isn’t doing it. I have no idea what is different. Maybe cached or something (since I had *just* upgraded to 2.0.4).
So nevermind, I guess.
Forum: Plugins
In reply to: HTML in “About yourself” of profile, or at least line breaksI found a messy solution to allow some text formatting HTML. In author.php I did this:
<?php
$curauth->user_description = str_replace (“[p]”, “”, $curauth->user_description);
$curauth->user_description = str_replace (“[/p]”, “”, $curauth->user_description);
$curauth->user_description = str_replace (“[b]”, “<b>”, $curauth->user_description);
$curauth->user_description = str_replace (“[/b]”, “</b>”, $curauth->user_description);
$curauth->user_description = str_replace (“[u]”, “<u>”, $curauth->user_description);
$curauth->user_description = str_replace (“[/u]”, “</u>”, $curauth->user_description);
$curauth->user_description = str_replace (“[i]”, “<i>”, $curauth->user_description);
$curauth->user_description = str_replace (“[/i]”, “</i>”, $curauth->user_description);
echo $curauth->user_description; ?>Forum: Plugins
In reply to: hiding authors from author listI’m an idiot. Thanks. 🙂
Forum: Plugins
In reply to: HTML in “About yourself” of profile, or at least line breaksasasdsadasd
Forum: Plugins
In reply to: partial admin functionsThanks, I’ll give it a try. 🙂
Forum: Plugins
In reply to: HTML in “About yourself” of profile, or at least line breaksLE BUMP.
Forum: Plugins
In reply to: HTML in “About yourself” of profile, or at least line breaksbump, ow.