Yoast_Notification_Center::get_sorted_notifications()
Return the notifications sorted on type and priority.
Метод класса: Yoast_Notification_Center{}
Хуков нет.
Возвращает
Yoast_Notification[]
. Sorted Notifications
Использование
$Yoast_Notification_Center = new Yoast_Notification_Center(); $Yoast_Notification_Center->get_sorted_notifications();
Код Yoast_Notification_Center::get_sorted_notifications() Yoast Notification Center::get sorted notifications Yoast 24.9
public function get_sorted_notifications() { $notifications = $this->get_notifications_for_user( get_current_user_id() ); if ( empty( $notifications ) ) { return []; } // Sort by severity, error first. usort( $notifications, [ $this, 'sort_notifications' ] ); return $notifications; }