Łukasz
Piwowar
DigitalZone -
Interactive Agency
Temat: get_term() nie działa poprawnie
Mam kod:
$terms = get_terms('miejsca', 'parent=0');
$count = count($terms);
foreach ( $terms as $term ) {
echo '<article class="grid_6 '. $class .'">';
echo '<a href="'.get_term_link($term->slug,'miejsca').'">';
echo '<h2>' .$term->name . '</h2>';
echo '<img src="' .get_template_directory_uri(). '/_/images/miejsca/' . $term->slug . '.jpg" class="radius" />';
echo '<p>' . $term->description . '</p>';
echo '</a>';
echo '</article>';
}
Niestety wyświetla tylko 3 wyniki (mam więcej kategorii gdzie są zawarte elementy i są one top level).