Ist*_*ood 0 php wordpress plugins elementor
我是 WordPress 新手。这些是我正在使用的版本 -
Wordpress version: 5.7.1
Theme Name: Saasland
Run Code Online (Sandbox Code Playgroud)
我收到此错误消息 -
已弃用:Elementor\Scheme_Typography 自版本 2.8.0 起已弃用!请改用 Elementor\Core\Schemes\Typography。在 /customers/a/a/5/test.com/httpd.www/wp-includes/functions.php 第 5051 行
这是functions.php中的代码
$replacement
) . $message,
E_USER_DEPRECATED (##line 5051)
);
} else {
Run Code Online (Sandbox Code Playgroud)
我尝试用谷歌搜索很多,但没有找到解决这个问题的方法。有谁知道任何可能的解决方案?
小智 7
由于 Elementor 相关插件/插件,因此显示了已弃用通知。要摆脱该消息,您可以找到该插件并将其停用,您可以等待插件更新或更改您的设置wp-config.php:
define( 'WP_DEBUG', true );
error_reporting(E_ALL ^ E_DEPRECATED);
Run Code Online (Sandbox Code Playgroud)
或者
define( 'WP_DEBUG', false );
Run Code Online (Sandbox Code Playgroud)