WP_Customize_Nav_Menus::hash_nav_menu_args( array $args )
Hashes (hmac) the nav menu arguments to ensure they are not tampered with when submitted in the Ajax request.
Description Description
Note that the array is expected to be pre-sorted.
Parameters Parameters
- $args
-
(array) (Required) The arguments to hash.
Return Return
(string) Hashed nav menu arguments.
Source Source
File: wp-includes/class-wp-customize-nav-menus.php
public function hash_nav_menu_args( $args ) { return wp_hash( serialize( $args ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |