
Originally Posted by
skorpyo
Could it be possible to add the post date "3 days ago" to the list items?! and even add the post views to show on them?! I really need help on displaying the post date to them, please someone help me. Thanks in advanced!
To display the post views you should be able to do something like this in getPostsWidgetItems :
PHP Code:
$views = $h->post->vars['post_row']->post_views;
print '<li>Views ' . $views . '</li>';
(copied straight from the post views plugin source)
For showing the post date you can use the time difference function. Something like :
PHP Code:
echo time_difference(unixtimestamp($h->post->date), $h->lang);
Both of these are un-tested, you might need to change the $h->post bits to use $item.
Bookmarks