WP_Customize_Nav_Menus::hash_nav_menu_args()publicWP 4.3.0

Hashes (hmac) the nav menu arguments to ensure they are not tampered with when submitted in the Ajax request.

Note that the array is expected to be pre-sorted.

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

Хуков нет.

Возвращает

Строку. Hashed nav menu arguments.

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

$WP_Customize_Nav_Menus = new WP_Customize_Nav_Menus();
$WP_Customize_Nav_Menus->hash_nav_menu_args( $args );
$args(массив) (обязательный)
The arguments to hash.

Список изменений

С версии 4.3.0 Введена.

Код WP_Customize_Nav_Menus::hash_nav_menu_args() WP 6.5.2

public function hash_nav_menu_args( $args ) {
	return wp_hash( serialize( $args ) );
}