Skip to content

Instantly share code, notes, and snippets.

@thiagotmendes
Created January 30, 2018 20:55
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 thiagotmendes/6a55c20b1f61fa9a152a2821df98b9ed to your computer and use it in GitHub Desktop.
Save thiagotmendes/6a55c20b1f61fa9a152a2821df98b9ed to your computer and use it in GitHub Desktop.
<?php
add_action('wp_ajax_insereDados', 'insereDados');
add_action('wp_ajax_nopriv_insereDados', 'insereDados' ); // aparentemente não é obrigatorio utilizar este action
function insereDados(){
echo $_POST['nome'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment