Salut, nu cred ca este un plugin, ci taxonomies + jquery pentru filtrarea fara refresh.
Detalii: codex.wordpress.org/Taxonomies.
Tutoriale gasesti pe google: wordpress taxonomy tutorial.
Cand folosisem taxonomy intr-o tema, gasisem o functie pe google:
Cod PHP:
function custom_taxonomy_dropdown($taxonomy, $orderby, $order, $limit, $name, $show_option_all) {
$args = array(
'orderby' => $orderby,
'order' => $order,
'number' => $limit,
);
$terms = get_terms($taxonomy, $args);
echo '<select name="'.$name.'" id="unit_type">';
if($show_option_all) echo '<option value="0">'.$show_option_all.'</option>';
if($show_option_none) echo '<option value="-1">'.$show_option_none.'</option>';
foreach ($terms as $term) {
echo '<option value="'.$term->slug.'">'.$term->name.' ('.$term->count.')</option>'."\n";
}
echo '</select>';
}
// apelare functie, unde doresti afisarea.
custom_taxonomy_dropdown('tax_name', 'date', 'ASC', '122', 'tax_name', 'Select Option');
Imi cer scuze, nu mai tin minte sursa codului. O poti modifica sa foloseasca radio input si jquery.
Cu stima,
Vinturis Gheorghe.
LE: se pare ca ai primit raspuns pana m-am miscat eu. Scuzati postul meu, atunci.