jQuery(function($){
$.ajax({
url: adminAjax,
type : "POST",
data: {
action: 'get_my_post',
animal: 'animal',
sport: 'sport',
technologie: 'technologie',
celebrity: 'celebrity'
},
success: function( data ) {
$("#animalpost").html(data);
}
})
当我添加条件时,此函数从functions.php中的函数返回查询结果:
if(is_page(“ test.php”))
该查询没有返回任何内容,请帮助我解决该问题
add_action( 'wp_ajax_get_my_post', 'myfunction' );
add_action( 'wp_ajax_nopriv_get_my_post', 'myfunction' );
function myfunction() {
if ( isset( $_POST['animal'] ))
{
if(is_page( 'test' ) )
{
$args = array( 'post_type' => 'journals'
); $journal = new WP_Query( $args ); if( $journal->have_posts() ):
答案 0 :(得分:0)
jQuery.ajax({
url: "<?php echo get_admin_url(); ?>admin-ajax.php",
type : "POST",
data: {
action: 'get_my_post',
animal: 'animal',
sport: 'sport',
technologie: 'technologie',
celebrity: 'celebrity'
},
success: function( data ) {
jQuery("#animalpost").html(data);
}
})
使用它代替您的..希望它可以工作:)