2011-06-04 55 views

回答

3

您需要修改Garland主題,以便它不顯示用戶名作爲該塊的一部分。您可以通過添加以下代碼/themes/garland/template.php年底在加蘭主題如此直接的做:

/** 
* Returns HTML for a recent node to be displayed in the recent content block. 
* 
* @param $variables 
* An associative array containing: 
* - node: A node object. 
* 
* @ingroup themeable 
*/ 
function garland_node_recent_content($variables) { 
    $node = $variables['node']; 

    $output = '<div class="node-title">'; 
    $output .= l($node->title, 'node/' . $node->nid); 
    $output .= theme('mark', array('type' => node_mark($node->nid, $node->changed))); 
    $output .= '</div>'; 

    return $output; 
} 

只需保存,然後清除所有的緩存(下管理|性能)。

但是,我建議你創建一個Garland主題的副本,並在/ sites/all/themes /下創建一個新主題。然後在那裏修改template.php。這是如此,如果你升級你不改變你的改變(因爲加蘭是Drupal核心的一部分)。