2010-07-02 8 views
0

댓글 목록에 헤더를 넣고 싶습니다. 사용할 수있는 PHP if 문이 있습니까? <php if $first : ?>과 같은 것입니다. 나는 그것을 발견 할 수 없다.첫 번째 댓글의 제목

답변

0

comment-wrapper.tpl.php를 재정의 할 수 있습니다. 현재 테마에서 comment-wrapper.tpl.php를 찾아 개발 디렉토리에 복사하십시오. 여기에서 머리글을 추가하여 수정할 수 있습니다. 아래 그림을 참조하십시오 (그러나 현재 테마의 주석 래퍼를 사용해야합니다).

<?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> 
+0

처음에는 제대로 작동하지 않았지만 주석 포장지를 사용하는 mytheme_preprocess_function이 있음을 발견했습니다. 나는 그것을 제거하고 지금 작동합니다. 감사! – Toxid