WP_Customize_Nav_Menus::export_preview_data() WordPress Method
The WP_Customize_Nav_Menus::export_preview_data() method is used to export the data for a menu in the Customizer preview.
WP_Customize_Nav_Menus::export_preview_data() #
Exports data from PHP to JS.
Source
File: wp-includes/class-wp-customize-nav-menus.php
public function export_preview_data() { // Why not wp_localize_script? Because we're not localizing, and it forces values into strings. $exports = array( 'navMenuInstanceArgs' => $this->preview_nav_menu_instance_args, ); printf( '<script>var _wpCustomizePreviewNavMenusExports = %s;</script>', wp_json_encode( $exports ) ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |