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.
我需要收集最近更新的文章。而且我不知道该怎么做,因为我对这个 CMS 还很陌生。
我检查了数据库中的“j_content”列,如果它已经有某种更新文章的标志,但我没有找到任何这样的东西。
任何可能导致此问题的原因都可能会有所帮助。
您可以通过 xxx_content 表中的修改列找到最新的文章。
在您的数据库中执行以下查询(可能正在使用 phpMyAdmin)
select * from xxx_content order by modified desc;
如果您想将结果限制为一个月的文章:
select * from xxx_content where modified >= DATE_FORMAT(NOW(), '%Y-%m-01') order by modified desc;
将 xxx 替换为您的表前缀