0
comment-wrapper.tpl.php具有以下代碼。drupal評論模塊
<div id="comments">
<?php print $content; ?>
</div>
其中是變量形式?當我看着template_preprocess_comment_wrapper函數時,沒有聲明的$內容?爲什麼?謝謝。
comment-wrapper.tpl.php具有以下代碼。drupal評論模塊
<div id="comments">
<?php print $content; ?>
</div>
其中是變量形式?當我看着template_preprocess_comment_wrapper函數時,沒有聲明的$內容?爲什麼?謝謝。
最後見http://api.drupal.org/api/drupal/modules--comment--comment.module/function/comment_render/6。
它直接傳遞給主題函數,所以你不能在那裏改變它。此主題功能僅用於將所有註釋封裝到給定結構中,默認情況下爲div。要更改單個評論,請使用內部主題功能之一,如theme_comment_view或comment.tpl.php
是否需要主題評論表單?看看這個:http://systemseed.com/blog/how-customise-comment-form-drupal-6 – Nikit 2011-02-14 05:16:43