Browse code

수정 내용 저장

Kang IkSeon authored on16/03/2018 06:03:10
Showing2 changed files

... ...
@@ -1,5 +1,5 @@
1 1
 (function($){
2 2
   jQuery.get(ajax_object.ajax_url, {'action':'callme'}, function(response) {
3
-    alert(response);
3
+    // alert(response);
4 4
   });
5 5
 })(jQuery);
... ...
@@ -7,7 +7,6 @@
7 7
  * Author URI:  https://hiseon.me/
8 8
  */
9 9
 
10
-
11 10
 add_action('wp_ajax_callme', 'callme_func');
12 11
 add_action('wp_ajax_nopriv_callme', 'callme_func');
13 12