Ajax: Unterschied zwischen den Versionen
Flinh1 (Diskussion | Beiträge) |
Flinh1 (Diskussion | Beiträge) (→XMLHttpRequest) |
||
| Zeile 11: | Zeile 11: | ||
XMLHttpRequest.readyState | XMLHttpRequest.readyState | ||
| + | |||
---- | ---- | ||
| + | |||
== Ajax in WordPress == | == Ajax in WordPress == | ||
Version vom 30. Oktober 2018, 10:02 Uhr
Asynchronous JavaScript And XML
XMLHttpRequest
XMLHttpRequest.readyState
Ajax in WordPress
add_action( 'wp_enqueue_scripts', 'ajax_test_enqueue_scripts' );
function ajax_test_enqueue_scripts() {
if( is_single() ) {
wp_enqueue_style( 'love', plugins_url( '/love.css', __FILE__ ) );
}
wp_enqueue_script( 'love', plugins_url( '/love.js', __FILE__ ), array('jquery'), '1.0', true );
wp_localize_script( 'love', 'postlove', array(
'ajax_url' => admin_url( 'admin-ajax.php' )
));
}
Links
- https://premium.wpmudev.org/blog/using-ajax-with-wordpress/ Using Ajax with Wordpress | | |