我正在Wordpress中使用jQuery和AJAX开发投票系统。为了使这个投票系统工作,我需要在我的主题中使用jQuery。所以在我的函数中写下了代码。php。但出于某种原因,我的剧本什么都没做。Watch my full vote script here.
所以我开始阅读抄本,发现here 要包含用于AJAX调用的jQuery,需要json2依赖项。有没有人有这方面的经验,可以告诉我需要如何包括这一点,因为jQuery已经在Wordpress中注册了,所以我是否需要再次注册jQuery并将json2依赖项添加到此中?我不明白。。
// Ajax Voting
wp_register_script( \'ajax-vote\', get_template_directory_uri() . \'/js/ajax-vote.js\', array(\'jquery\') );
$nonce = wp_create_nonce("vote_nonce");
$stn_vote_data = array(
\'ajaxurl\' => admin_url( \'admin-ajax.php\'),
\'nonce\' => $nonce,
);
wp_localize_script( \'ajax-vote\', \'stn_vote\', $stn_vote_data );
function stn_script_enqueuer() {
wp_enqueue_script( \'jquery\' );
wp_enqueue_script( \'ajax-vote\' );
}
add_action( \'wp_enqueue_scripts\', \'stn_script_enqueuer\' );