theme_aggregator_block_item($item, $feed = 0)
drupal/modules/aggregator/aggregator.module, line 992
Format an individual feed item for display in the block.
ingroup themeable
$item The item to be displayed.
$feed Not used.
The item HTML.
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
function theme_aggregator_block_item($item, $feed = 0) {
// Display the external link to the item.
$output .= '<a href="' . check_url($item->link) . '">' . check_plain($item->title) . "</a>\n";
return $output;
}