Avui estic fent un llistat de blogs per castelloneo... i volia ocultar el "Blog de admin" o en anglès "Admin's blog" que surt just baix de cada node del blog, a l'aparat dels links dels nodes...
Ho he fet al Drupal 6.x editant el /modules/blog/blog.module comentant el return de la línia 131. Més o menys ací:
function blog_link($type, $node = NULL, $teaser = FALSE) {
  $links = array();
  if ($type == 'node' && $node->type == 'blog') {
    if (arg(0) != 'blog' || arg(1) != $node->uid) {
      // This goes to l() and therefore escapes !username in both the title and attributes.
      $links['blog_usernames_blog'] = array(
        'title' => t("!username's blog", array('!username' => $node->name)),
        'href' => "blog/$node->uid",
        'attributes' => array('title' => t("Read !username's latest blog entries.", array('!username' =>\
 $node->name)))
      );
    }
  }
  //return $links;    <--- HE OCULTAT EL RETURN AQUEST
}





