Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active October 10, 2015 15:24
Show Gist options
  • Save Dinamiko/b52f86b691927c06e826 to your computer and use it in GitHub Desktop.
Save Dinamiko/b52f86b691927c06e826 to your computer and use it in GitHub Desktop.
<?php
/**
* crea registro con datos desde el formulario
*/
function encuesta_ajax() {
$result['type'] = 'success';
$result['msg'] = 'testeando...';
$result = json_encode( $result );
echo $result;
wp_die();
}
add_action('wp_ajax_encuesta_ajax', 'encuesta_ajax' );
add_action('wp_ajax_nopriv_encuesta_ajax', 'encuesta_ajax' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment