0

我想要完成的是让变量 $meta_value_pass 通过 ajax 传递到另一个页面 186。这个页面应该获取变量,在循环中使用它并输出发回生成的 html。

通话来源:

$meta_value_pass = Entwerfen3;
<script>
jQuery(document).ready(function($){

alert ("helloworld");
    $(".sorting").click(function()
{      
var post_value = $meta_value_pass;
jQuery("#projektwrapper")

            .empty()

            .html("<div style='text-align: center; padding: 30px;'>Loading...</div>");


jQuery.ajax({

            url: "http://web318.login-11.hoststar.at/ben/xarch/azall/?page_id=186",
            dataType: "html",
            type: "POST",
            data: ({player: post_value}),
            success: function(data) {
                jQuery("#projektwrapper").html(data); } 

  });
    });

});
</script>

PHP 处理变量并返回 html:

    <?php

    /*
        Template Name: Projekte Getter
    */


    $meta_value_pass = $_POST['player'];

    $args= array(
    'meta_query' =>  array(
    array(
            'key' => 'cf_cf_Lehrveranstaltung',
            'value' => $meta_value_pass,
            'compare' => 'LIKE'
            ))
            );


   $the_query = new WP_Query( $args );
?>
4

0 回答 0