Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: customize_refresh_nonces

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1023           /**
1024            * Filter nonces for a customize_refresh_nonces AJAX request.
1025            *
1026            * @since 4.2.0
1027            *
1028            * @param array                $nonces Array of refreshed nonces for save and
1029            *                                     preview actions.
1030            * @param WP_Customize_Manager $this   WP_Customize_Manager instance.
1031            */
1032           $nonces = apply_filters( 'customize_refresh_nonces', $nonces, $this );
1033           wp_send_json_success( $nonces );
1034      }
1035
1036      /**
1037       * Add a customize setting.
1038       *
1039       * @since 3.4.0
1040       *
1041       * @param WP_Customize_Setting|string $id Customize Setting object, or ID.