Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.

articleposter

This function will render the author information of an article.
This function should only be called inside the render_article() function in the theme.

articleposter

articleposter( array $info [ , string $sep [ , string $class ] ] )

Parameters
info
The information for the article as an array

sep
Separator for the different options can be chosen as you want

class
Chose your own class when rendering the author. This class with be used in the inside the <a> tag so you can make the link as unique as you want!

Return Values
This function will return the author information in the given article info.

Example
Code
<?php
articleposter($info," ·", "myclass")
?>

Will return the author for the article with the information given in the $info variable along with date posted.

Output

Quote

<!--article_poster-->
<a href='profile.php?lookup=USER_ID' class='myclass'>USER_NAME</a>
·
DATE AND TIME
·


Changelog
7.01.00 - The function now uses the profile_link function to display the article author's name and profile link.