How do i make <?php wp_list_authors(); ?> appear like a tagcloud?
or just make the author names side by side instead of having it vertically as a list? thanks
How do i make <?php wp_list_authors(); ?> appear like a tagcloud?
or just make the author names side by side instead of having it vertically as a list? thanks
anyone? i found a category cloud plugin, i hope someone could help me make it author cloud instead.. Here
Found it.. i did it using:list author plugin
changed the list-post-authors-plus.php
deleted the:
$return .= $link . '<ul>';
$return .= $link . '<li>';
$return .= $link . '</ul>';
changed the following code:
$return .= $link . '</li>';
to
$return .= $link . ' ';
you can add more if you want more space between the names of authors. :)
it will result into:
it worked for me so please don't blame me if it won't for you.. remember to back up your files.. You can change the settings(show post count,exclude/include etc) by using the widget or editing your theme's sidebar.php just read the readme.txt file and you'll get it, follow the same instructions.
This topic has been closed to new replies.