Last active
October 10, 2015 15:24
-
-
Save Dinamiko/b52f86b691927c06e826 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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