已经通过主题检查器插件运行了我的主题,它似乎对file_get_contents
获取json url。我发现有帖子说我应该使用wp_remote_get
. 我目前正在使用以下内容解码url:
$url = \'url\' . $var;
$json = file_get_contents($url,0,null,null);
$output = json_decode($json,true);
我从主题检查器中得到的消息是:
警告:在文件中找到file\\u get\\u内容。php可能的文件操作。
我这么说是因为wordpress或其他原因可能会用到一个函数吗?还有,我将如何使用wp_remote_get
. 我尝试了一些变体,主要是将file\\u get\\u内容替换为wp_remote_get
没有运气。似乎根本无法解码url。