I'd like to have a header on the comment list. Is there a php if statement that I could use? Something like <php if $first : ?>. I can't find it.
标题上的第一个评论
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
dongzhen6554 2010-07-03 13:54关注You can override comment-wrapper.tpl.php. Find the comment-wrapper.tpl.php from your current theme and make a copy of it in your development directory. From there you can modify it to add your header. As an illustration see below (but you need to use the comment-wrapper from your current theme).
<?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>本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报