Dinamik (php ve ajax kullanarak) açılan menü ile Wordpress mesajları filtre

0 Cevap php

Hedef: Ben ziyaretçinin açılan menüden bir ay ve yıl seçin ve seçilen değerlere göre sayfa değişikliği ile ilgili içerik (mesaj) olmasını sağlayan dinamik bir sayfa yapmak istiyorum.

Şu anda belirli bir ay ve yıl belirli bir kategorideki mesajları görüntülemek için aşağıdaki kodu kullanıyorum.

<?php query_posts("cat=3&monthnum=12&year=2011"); ?> <?php if (have_posts()) : ?>
     <ul>
    <?php while (have_posts()) : the_post(); ?>
        <li>
           <?php the_title(); ?>
           <?php the_excerpt(); ?>
        </li>
    <?php endwhile; ?>
     </ul><?php endif; ?>

It works well, but I would like to make the page dynamic so that the visitor can select a month and year from a drop-down menu and have the content change according the the values selected. I've posted pictures of how it would work here: fivepotato.com/images/ex1.png and fivepotato.com/images/ex2.png.

Bu işi yapmak için, ben açılan listeden alınır monthnum bir değişken (değerini yapmak zorunda olduğunu biliyoruz:

<?php $monthvar = $_POST["month"]; query_posts("cat=3&monthnum=$monthvar&year=2011");?>

Ben Ajax ile fazla deneyimim yok, ama ben bir ay açılır menüden seçildikten sonra içeriği yeniden filtre yapmak için kullanmak gerekir olacağını varsayabiliriz.

I have found similar inquires on the following site: askthecssguy.com/2009/03/checkbox_filters_with_jquery_1.html

http://www.babycarers.com/search?ajax=0&searchref=37609&start=0&lat=&lon=&city=&radius=0&spec1=1&spec2=1&spec3=1&spec4=1&spec5=1&spec6=1&spec7=1&inst1=1&inst2=1&inst3=1&inst4=1&inst5=1&inst6=1&inst7=1&minfee=any&maxfee=any&av1=1&keywords=&country=CA&sort=fee&resultsperpage=10: Ve ben de yapmak istiyorum ne benzer bir çalışma örneği bulduk

Herkes bu koparmak için gerekli javascript / Ajax ile bana yardımcı olabilir, ben minnettar olacaktır.

0 Cevap