【发布时间】:2020-03-21 23:12:47
【问题描述】:
【问题讨论】:
-
您安装了任何新插件吗?如果您在
wp-config.php中将WP_DEBUG设置为true,是否有任何错误? -
请显示代码。
标签: wordpress backend custom-post-type posts
【问题讨论】:
wp-config.php 中将WP_DEBUG 设置为true,是否有任何错误?
标签: wordpress backend custom-post-type posts
您能否修复数据库表并检查以下解决方案,这可能是 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';
【讨论】: