WC_Background_Updater::__construct
Initiate new background process.
Метод класса: WC_Background_Updater{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Background_Updater = new WC_Background_Updater(); $WC_Background_Updater->__construct();
Код WC_Background_Updater::__construct() WC Background Updater:: construct WC 10.9.1
public function __construct() {
// Uses unique prefix per blog so each blog has separate queue.
$this->prefix = 'wp_' . get_current_blog_id();
$this->action = 'wc_updater';
parent::__construct();
}