PHP:
$args = Array(
'meta_key' => 'provincia',
'meta_value' => 'udine',
'orderby' => 'title'
);
echo '<ul>';
$posts = get_posts($args);
foreach ($posts as $post) {
setup_postdata($post);
// qua fai l'echo dell'elenco dei comuni leggendo il titolo con get_the_title() e il permalink con get_permalink();
// es:
echo '<li><a href="' . get_permalink($id); . '">' . get_the_title($id) . '</a></li>';
}
echo '</ul>';
dove è che sbaglio??? grazie mille!0
Ultima modifica di un moderatore: