Список терминов в алфавитном порядке



Этот код выведет список всех терминов используемых на сайте в алфавитном порядке. Нажатие на название термина перебросит вас на обзорную страницу с документами в которых этот термин используется.

<?php
$query
= "SELECT tid,name from {term_data} ORDER BY name ASC";
$result = db_query($query);
while (
$term = db_fetch_object($result)) {
 
$items[]= l($term->name, "taxonomy/term/$term->tid");
}
if(
count($items)) {
  return
theme('item_list',$items);
}
?>

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.