Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以提示以下内容:我必须在我的自定义模块 oа Joomla(本质上是 HTML)中插入服务信息,这通常由 Joomla 显示 - 我需要创建日期和查看这篇文章的次数?
你可以运行一个非常简单的查询来得到这个:
SELECT `created`, `hits` FROM #__content WHERE `id` = <your article id>
created是创建日期,hits是文章被查看的次数。
created
hits