标签: php html joomla
我正在尝试编辑joomla主页。主页有mod_articles_category的最新文章模块。 Everythings工作正常,但在文章显示:超级用户。
我想要显示的不是真实姓名,而是用户名。我正在尝试:
<?php echo $item->author; ?>
但它没有用。
答案 0 :(得分:0)
此添加内容应为您提供作者用户名。
echo JFactory::getUser($this->item->created_by)->username;