Yoast_Notification_Center::get_notifications()
Provide a way to verify present notifications.
Метод класса: Yoast_Notification_Center{}
Хуков нет.
Возвращает
Массив|Yoast_Notification[]
. Registered notifications.
Использование
$Yoast_Notification_Center = new Yoast_Notification_Center(); $Yoast_Notification_Center->get_notifications();
Код Yoast_Notification_Center::get_notifications() Yoast Notification Center::get notifications Yoast 24.0
public function get_notifications() { if ( ! $this->notifications ) { return []; } return array_merge( ...$this->notifications ); }