我一直在玩弄使用 Wordpress 作为 CMS 来替换我多年来拼凑在一起的各种数据库驱动页面的想法。我想知道是否有一种基于 URL 从数据库中获取信息的无缝方式。
例如,我有提供奖励信息的页面
/academy-awards grabs the intro info from the database
/academy-awards/32 grabs the intro info about the 32nd edition
/academy-awards/32/winners grabs the results and commentary for that ceremony
现在,academy-awards 实际上是一个无扩展名的 php 文件,并且根据它后面的内容(无、数字、数字和单词),它会提供各种页面。
我将/如何将这项工作翻译成 Wordpress?我是一个完整的 WP 菜鸟,所以我希望你的初步答案可以帮助我进一步挖掘。