2
我正在使用Drupal 7和Garland主題。最近的內容塊當前顯示最近修改的節點的標題名稱以及相應用戶的用戶名。從最近的內容塊中刪除用戶名Drupal 7
我想從顯示中刪除用戶名。 我不會接受使用Views模塊的解決方案。
非常感謝!
我正在使用Drupal 7和Garland主題。最近的內容塊當前顯示最近修改的節點的標題名稱以及相應用戶的用戶名。從最近的內容塊中刪除用戶名Drupal 7
我想從顯示中刪除用戶名。 我不會接受使用Views模塊的解決方案。
非常感謝!
您需要修改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核心的一部分)。