item.php 398 B

1234567891011121314151617181920
  1. <?php
  2. function echo_item ($link, $image, $text, $description) {
  3. $image = get_placeholder() ?: $image;
  4. echo "<a href=\"" . $link . "\">";
  5. echo "<img src=\"" . $image . "\">";
  6. echo "<span>";
  7. echo $text;
  8. if (isset($description)) {
  9. echo "<br>";
  10. echo "<small>";
  11. echo $description;
  12. echo "</small>";
  13. };
  14. echo "</span>";
  15. echo "</a>";
  16. };
  17. ?>