0

サイドバーに高度な検索フォームがあります。アクションは get_bloginfo('home') に設定されているため、search.php を指す必要があります (フォームの ID は「searchform」であるため)。

その検索フォームは、カスタム メタ フィールドで結果をフィルタリングする必要があります。

私はこのsearch.phpを試して作成しました。

<?php
function get_reviews_by_custom_search() {
    global $wpdb;

    $grad           = preg_replace( '/^[0-9a-zA-Z-]/', '', $_GET['grad'] );
    $adType         = preg_replace( '/^[0-9a-zA-Z-]/', '', $_GET['adType'] );
    $realEstateType = preg_replace( '/^[0-9a-zA-Z-]/', '', $_GET['realEstateType'] );
    $dioGrada       = preg_replace( '/^[0-9a-zA-Z-]/', '', $_GET['dioGrada'] );
    $squareFrom     = preg_replace( '/[^0-9]/', '', $_GET['squareFrom'] );
    $squareTo       = preg_replace( '/[^0-9]/', '', $_GET['squareTo'] );
    $priceFrom      = preg_replace( '/[^0-9]/', '', $_GET['priceFrom'] );
    $priceTo        = preg_replace( '/[^0-9]/', '', $_GET['priceTo'] );
    $roomsNum       = preg_replace( '/[^0-9]/', '', $_GET['roomsNum'] );

    // Change the defaults if not chosen
    if($squareFrom == '') { $squareFrom = '0'; }
    if($squareTo == '') { $squareTo = '10000000'; }

    // Define the arguments for the WP query
    $args = array(
            'post_type' => 'post',
            'relation' => 'AND',
            'meta_query' => array(
                    array(
                            'key' => 'ex_lokacija',
                            'value' => $grad ,
                            'compare' => 'LIKE'
                    ),
                    array(
                            'key' => 'ex_vrsta_oglasa',
                            'value' => $adType ,
                            'compare' => 'LIKE'
                    ),
                    array(
                            'key' => 'ex_tip_nekretnine',
                            'value' => $realEstateType ,
                            'compare' => 'LIKE'
                    ),
                    array(
                            'key' => 'ex_dio_pg',
                            'value' => $dioGrada ,
                            'compare' => 'LIKE'
                    ),
                    array(
                            'key' => 'ex_dio_pg',
                            'value' => $dioGrada ,
                            'compare' => 'LIKE'
                    ),
                    array(
                            'key' => 'et_square_footage',
                            'value' => array( $squareFrom, $squareTo ),
                            'type' => 'numeric',
                            'compare' => 'BETWEEN'
                    ),
                    array(
                            'key' => 'et_price',
                            'value' => array( $priceFrom, $priceTo ),
                            'type' => 'numeric',
                            'compare' => 'BETWEEN'
                                    )
            )
    );

    $searched_posts = new WP_Query( $args );

    return $searched_posts;
}

$searched_posts = get_reviews_by_custom_search();       

     get_header(); ?>

        <div id="content-top">
            <div id="menu-bg"></div>
            <div id="top-index-overlay"></div>

            <div id="content" class="clearfix">
                <div id="main-area">
                    <?php get_template_part('includes/breadcrumbs'); 

                        foreach ($searched_posts as $searched_post) {

                            echo "<h1 class=\"entry-title\"><a href=\"" . get_permalink($searched_post->ID) . "\">" . $searched_post->post_title . "</a></h1>";

                            echo "Rating - " . get_post_meta($searched_post->ID,'rating',true) . "<br>";
                            echo "Audience - " . get_post_meta($searched_post->ID,'audience',true) . "<br>";
                            echo "Length - " . get_post_meta($searched_post->ID,'length',true) . "<br>";    

                            echo "<a href=\"" . get_permalink($searched_post->ID) . "\">Read More</a>";

                        }
                    ?>

                </div> <!-- end #main-area -->

                <?php get_sidebar(); ?>

    <?php get_footer(); ?>

私はほとんどのコードをオンラインで見つけました。私はまだ PHP を学んでいます。

最初の部分は、検索された投稿の配列を返す関数です。しかし、コードの一部が間違っています。

4

1 に答える 1

0

ここにはいくつかのオプションがあります。

1,あなたが調べるかもしれない素敵なWordpressのプラグインがあります

2、検索用語をキャプチャして、次のように使用できますWP_QUERY

$s = $_POST['search_field'];
$my_query = new WP_Query('meta_value='.$s);
于 2012-11-30T19:27:29.253 に答える