php 在Wordpress中使用Ajax
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在Wordpress中使用Ajax相关的知识,希望对你有一定的参考价值。
// Pour utiliser cette ressource en front,
// … mon script a besoin de connaître l'URL d'adminAjax…
// … pour le pousser dans la variable url !
add_action( 'wp_enqueue_scripts', 'myenqueue' );
function myenqueue() {
wp_enqueue_script( 'mon-script-ajax', get_template_directory_uri() . '/js/script.js', array('jquery') );
wp_localize_script( 'mon-script-ajax', 'adminAjax', admin_url( 'admin-ajax.php' ) );
}
// J'utilise les hooks
add_action( 'wp_ajax_get_my_post', 'myfunction' );
add_action( 'wp_ajax_nopriv_get_my_post', 'myfunction' );
function myfunction() {
// Je teste si je peux renvoyer l'article
if ( isset( $_POST['id'] )
&& 'post' == get_post_type( $_POST['id'] )
&& 'publish' == get_post_status( $_POST['id'] ) ) {
$id = (int)$_POST['id'];
// je récupère l'article…
// … et je construit le HTML
$post = get_post( $id );
$data = array();
$data['article'] = '<h1>' . apply_filters( 'the_title', $post->post_title ) . '</h1>';
$data['article'] .= apply_filters( 'the_content', $post->post_content );
// Je le renvoie
wp_send_json_success( $data );
} else {
// Sinon j'envoie une erreur
wp_send_json_error( 'article indisponible' );
}
}
以上是关于php 在Wordpress中使用Ajax的主要内容,如果未能解决你的问题,请参考以下文章
在 wordpress 中使用 ajax 将数据发送到 php 时出错
在wordpress中使用ajax进行MySQL选择查询
wordpress 使用ajax方法
如何在wordpress中用php编写ajax?
使用下拉菜单动态过滤 Wordpress 帖子(使用 php 和 ajax)
Ajax自定义函数在wordpress中返回0