该插件使用cURl-direkt代替WordPress内置的HTTP类。如果您的服务器不支持cURL,插件将无法工作,您将收到此消息。卸载插件并使用另一个插件。或更换curl_it()
插件内的功能稳定。
Update
工作环境:
打开插件文件youtube-sidebar-widget.php
并替换该功能curl_it()
使用此选项:
function curl_it($url) {
$data = wp_remote_get( $url );
return ( ! is_wp_error( $data ) && isset( $data[\'body\'] ) ) ?
$data[\'body\'] : false;
}