wp_get_cache not working
-
Hello
I’m the developer of Quadmenu
Some users of your plugin are reporting an issue in the backend
For some reason, your plugin is not reloading this cache
function wp_get_nav_menu_items($menu_id) {
if (!$data = wp_cache_get(‘quadmenu’, ‘wp_get_nav_menu_items’)) {
$data = wp_get_nav_menu_items($menu_id);
wp_cache_add(‘quadmenu’, $data, ‘wp_get_nav_menu_items’);
}return $data;
}The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘wp_get_cache not working’ is closed to new replies.