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.

newsposter

This function will display the author of the news time along with the publication date and time and is used within the render_news function only.
There is an identical function for articles which is name articleposter.

newsposter

Quote

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


Parameters
info
The news item information array which holds all data about the news item.

sep
Separator which is used to separate the different parts.

Return Values
Returns a string with the author name and time and date the news item is posted.

Example
Code
<?php
echo newsposter($info," ·");
?>


Output from example

Quote

<!--news_poster--><span class='bullet'>ยท</span> <a href='profile.php?lookup=1'>Digitanium</a> on Dec 29 2008 at 14:47:41n


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

Notes
This function is for the render_news function only.
Use the articleposter function for the render_article function.