标题上的第一个评论

时间:2010-07-02 21:18:31

标签: php drupal drupal-comments

我想在评论列表上有一个标题。我可以使用php if语句吗?像<php if $first : ?>这样的东西。我找不到了。

1 个答案:

答案 0 :(得分:0)

您可以覆盖comment-wrapper.tpl.php。从当前主题中找到comment-wrapper.tpl.php,并在开发目录中复制它。从那里你可以修改它来添加标题。如下图所示(但您需要使用当前主题中的comment-wrapper)。

<?php
// $Id: comment-wrapper.tpl.php,v 1.2 2007/08/07 08:39:35 goba Exp $

/**
 * @file comment-wrapper.tpl.php
 * Default theme implementation to wrap comments.
 *
 * Available variables:
 * - $content: All comments for a given page. Also contains sorting controls
 *   and comment forms if the site is configured for it.
 *
 * The following variables are provided for contextual information.
 * - $node: Node object the comments are attached to.
 * The constants below the variables show the possible values and should be
 * used for comparison.
 * - $display_mode
 *   - COMMENT_MODE_FLAT_COLLAPSED
 *   - COMMENT_MODE_FLAT_EXPANDED
 *   - COMMENT_MODE_THREADED_COLLAPSED
 *   - COMMENT_MODE_THREADED_EXPANDED
 * - $display_order
 *   - COMMENT_ORDER_NEWEST_FIRST
 *   - COMMENT_ORDER_OLDEST_FIRST
 * - $comment_controls_state
 *   - COMMENT_CONTROLS_ABOVE
 *   - COMMENT_CONTROLS_BELOW
 *   - COMMENT_CONTROLS_ABOVE_BELOW
 *   - COMMENT_CONTROLS_HIDDEN
 *
 * @see template_preprocess_comment_wrapper()
 * @see theme_comment_wrapper()
 */
?>
<div id="comments">
  <h2>My Comment Header</h2>
  <?php print $content; ?>
</div>