function blog_feed_last in Drupal 5
Same name and namespace in other branches
- 4 modules/blog.module \blog_feed_last()
- 6 modules/blog/blog.pages.inc \blog_feed_last()
- 7 modules/blog/blog.pages.inc \blog_feed_last()
Displays an RSS feed containing recent blog entries of all users.
1 call to blog_feed_last()
- blog_page in modules/
blog/ blog.module - Menu callback; displays a Drupal page containing recent blog entries.
File
- modules/
blog/ blog.module, line 95 - Enables keeping an easily and regularly updated web page or a blog.
Code
function blog_feed_last() {
$result = db_query_range(db_rewrite_sql("SELECT n.nid, n.created FROM {node} n WHERE n.type = 'blog' AND n.status = 1 ORDER BY n.created DESC"), 0, variable_get('feed_default_items', 10));
$channel['title'] = variable_get('site_name', 'Drupal') . ' blogs';
$channel['link'] = url('blog', NULL, NULL, TRUE);
$channel['description'] = $term->description;
node_feed($result, $channel);
}