如何在Wordpress中加载Ajax
我熟悉在jQuery中以普通方式使用ajax。
我已经玩了一段时间,但不明白Wordpress需要什么才能让它工作......
我在这里的内容取自一些教程或文章。
这是在函数中.php(在子主题中):
// code to load jquery - working fine
// code to load javascript file - working fine
// ENABLE AJAX :
function add_ajax()
{
wp_localize_script(
'function',
'ajax_script',
array( 'ajaxurl' => admin_url( 'admin-ajax.php' ) ) );
}
$dirName = get_stylesheet_directory(); // use this to get child theme dir
require_once ($dirName."/ajax.php");
add_action("wp_ajax_nopriv_function1", "function1"); // function in ajax.php
add_action('template_redirect', 'add_ajax');
jQuery本身正在加载并正常工作。
我尝试了一些基本的ajax,如下所示:
jQuery(document).ready(function($){
$('a.link').click(function(){
$.ajax({
url: ajax_script.ajaxurl,
data: ({action : 'function1'}),
success: function(data){
$('#result').html(data);
}
});
return false;
});
});
除此之外,我不知道如何测试它是否完全加载...
任何帮助将不胜感激。
编辑:
在火虫中此错误:
ReferenceError: ajax_script is not defined
url: ajax_script.ajaxurl,