Skip to content

Instantly share code, notes, and snippets.

@ravewebdev
Created July 13, 2020 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ravewebdev/ec7d4099b6f4d8d147b15af5371e440e to your computer and use it in GitHub Desktop.
Save ravewebdev/ec7d4099b6f4d8d147b15af5371e440e to your computer and use it in GitHub Desktop.
3.2.1. Create nonce for use with REST API
<?php
function localize_route() {
$nonce = wp_create_nonce( 'wp_rest' );
}
add_action( 'wp_enqueue_scripts', 'localize_route' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment