Кто нибудь может мне объяснить почему
мой код
new Kama_Cron([
'events' => array(
'wpkama_cron_func' => array(
'callback' => 'wpkama_cron_func',
'interval_name' => '1_min',
),
),
]);
function wpkama_cron_func(){
$id_test = get_the_ID();
$number_test = get_post_meta($id_test, 'test', true);
$number_test++;
update_post_meta($id_test, 'test', $number_test);}
вызывает ошибку
Fatal error: Uncaught Error: Class 'Kama_Cron' not found in C:\xampp\htdocs\wor\wp-content\themes\me_theme_test\functions.php:692 Stack trace: #0 C:\xampp\htdocs\wor\wp-settings.php(426): include() #1 C:\xampp\htdocs\wor\wp-config.php(88): require_once('C:\\xampp\\htdocs...') #2 C:\xampp\htdocs\wor\wp-load.php(37): require_once('C:\\xampp\\htdocs...') #3 C:\xampp\htdocs\wor\wp-blog-header.php(13): require_once('C:\\xampp\\htdocs...') #4 C:\xampp\htdocs\wor\index.php(17): require('C:\\xampp\\htdocs...') #5 {main} thrown in C:\xampp\htdocs\wor\wp-content\themes\me_theme_test\functions.php on line 692
я вывожу все в functions.php как сказано в этой статье
https://wp-kama.ru/id_11098/kama_cron.html