How to Load Ajax in Wordpress

后端 未结 6 1908
失恋的感觉
失恋的感觉 2020-12-02 13:52

I\'m familiar with using ajax in the ordinary way with jQuery.
I\'ve played around it for a while, but don\'t understand what Wordpress needs to get it to work...
Wh

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-02 14:17

    Use wp_localize_script and pass url there:

    wp_localize_script( some_handle, 'admin_url', array('ajax_url' => admin_url( 'admin-ajax.php' ) ) );
    

    then inside js, you can call it by

    admin_url.ajax_url 
    

提交回复
热议问题