admin管理员组文章数量:1323200
I am making a plugin that make a HTTP call to my API, I want this call be cached an tried using this way:
static function get_info(){
$cache = wp_cache_get( $username, "action" );
if(!cache){
$cache = file_get_contents(...);
wp_cache_set( $username, $cache, "action", 900 );
}
return $cache;
}
When I run this code (this php file are inside my plugin) I am getting
"Fatal error: Uncaught Error: Call to undefined function wp_cache_get()"
I have to maque a require from wp-includes.php cache file? Or maybe I am missing something.
本文标签: Undefined cache functions in my custom plugin
版权声明:本文标题:Undefined cache functions in my custom plugin 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742090050a2420209.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论