WP_Customize_Manager::refresh_nonces PHP Method

refresh_nonces() public method

Refresh nonces for the current preview.
Since: 4.2.0
public refresh_nonces ( )
    public function refresh_nonces()
    {
        if (!$this->is_preview()) {
            wp_send_json_error('not_preview');
        }
        wp_send_json_success($this->get_nonces());
    }
WP_Customize_Manager