Yoast\WP\SEO\Routes

Alert_Dismissal_Route::can_dismiss()publicYoast 1.0

Whether or not the current user is allowed to dismiss alerts.

Метод класса: Alert_Dismissal_Route{}

Хуков нет.

Возвращает

true|false. Whether or not the current user is allowed to dismiss alerts.

Использование

$Alert_Dismissal_Route = new Alert_Dismissal_Route();
$Alert_Dismissal_Route->can_dismiss();

Код Alert_Dismissal_Route::can_dismiss() Yoast 24.7

public function can_dismiss() {
	return \current_user_can( 'edit_posts' );
}