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>

変数を処理して html を返す PHP:

    <?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