/home/u270125469/public_html/wp-admin/includes/class-wp-importer.php:271)致命错误:无法重新声明get_cli_args() (以前在/home/u270125469/public_html/wp-admin/includes/class-wp-importer.php中在第319行中声明)
在打开“abc.com/wp”,我得到上述错误。如何解决此错误?这发生在我安装了一个插件,用于导入定制文件。
发布于 2021-12-31 11:57:59
function replace_text($text) {
$text = str_replace('look-for-this-string', 'replace-with-this-string', $text);
$text = str_replace('look-for-that-string', 'replace-with-that-string', $text);
return $text;
}
add_filter('the_content', 'replace_text');https://stackoverflow.com/questions/40890919
复制相似问题