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.
誰かが次のことを示唆できますか: Joomla (基本的には HTML) のカスタム モジュールに、Joomla によって通常表示されるサービス情報を挿入する必要があります。作成日と、この記事がどのように閲覧されたかが必要ですか?
非常に単純なクエリを実行して、これを取得できます。
SELECT `created`, `hits` FROM #__content WHERE `id` = <your article id>
createdは作成日でhitsあり、記事が閲覧された回数です。
created
hits