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.
我正在尝试创建目录列表,其中顶部将有链接...来自 az 一些类似这样的内容:
A B C D E .... V W X Y Z
当用户按下 A 时,所有标题以 A 开头的帖子都应该出现,实现这一点的最佳方法是什么?
有人在 wordpress.org 上问过这个问题,用示例源检查你的答案的链接。
首字母帖子
您必须实现一个使用“LIKE”过滤器的 SQL 请求:
SELECT * from post WHERE post.title LIKE 'A%';
此请求将为您提供以“A”字母开头的所有帖子。