Automattic\WooCommerce\StoreApi
Authentication::init()
Hook into WP lifecycle events.
{} Это метод класса: Authentication{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$Authentication = new Authentication(); $Authentication->init();
Код Authentication::init() Authentication::init WC 6.8.0
public function init() { add_filter( 'rest_authentication_errors', array( $this, 'check_authentication' ) ); add_action( 'set_logged_in_cookie', array( $this, 'set_logged_in_cookie' ) ); }