WordPress 后端不显示全部 post

WordPress backend does not show all post

我创建了一个自定义 post 类型。在过去几天的某个时候,post 不再出现在列表中,但它仍然显示 post 的总数。

看到这里它显示了所有 post(18),已发布 post (13),但它只显示列表中的一个 post。

你能修复数据库表并检查下面的解决方案吗?它可能是 REGEX 问题:

translations.php
line 726
Change this: $pattern = '/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)(;{0,1})$/is';
to this: $pattern = '/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*);{0,1}$/is';

您可以在 : https://wordpress.stackexchange.com/questions/51134/dashboard-says-no-posts-found-even-though-there-are-some-posts

上看到它