2012-07-03 166 views
0

我有一個客戶端網站已經爲特定類別的帖子請求自定義評論格式。Wordpress自定義評論

在我的循環模板,我有這樣的:

<div id="gallery-commentlist"> 
    <ul class="gallery-commentlist"> 
      <?php wp_list_comments('type=comment&callback=gallery_comment'); ?> 
    </ul> 
</div><!-- #gallery-commentlist --> 

而且在我functions.php文件,我有這樣的:

<?php function gallery_comment($comment, $args, $depth) { 
    $GLOBALS['comment'] = $comment; ?> 
    <li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>"> 
    <div id="comment-<?php comment_ID(); ?>"> 
     <div class="gallery-comment-body"> 
      <p><span class="gallery-comment-author"><?php comment_text() ?>:</span> <?php comment_text() ?></p> 
     </div> 
     <div class="comment-meta commentmetadata"><a href="<?php echo esc_url(get_comment_link($comment->comment_ID)) ?>"> &ndash; 
     <?php get_comment_date() ?> at <?php get_comment_time() ?></a><?php edit_comment_link(__('(Edit)'),' ','') ?> 
     </div> 
    </div> 
<?php }?> 

它不返回任何意見,並且對生活我,我不明白爲什麼。我遵循WP代碼中的指示信函。有沒有我忽略的東西?

感謝您的幫助!

TY

+0

即使在這裏有一些Wordpress的裂縫,這更是一個編程網站。考慮[在wordpress論壇上提出wordpress支持請求](http://wordpress.org/support/forum/how-to-and-troubleshooting)。 – hakre

+0

我知道。如果問題是我的PHP代碼,我在這裏發佈它。 –

+0

看起來更多,當你在這裏使用回調函數時,wordpress會像'comment_class()'這樣的函數傳遞,並且東西不起作用。我懷疑設置一個全局變量還不夠。但這只是一個猜測,希望有所幫助。 – hakre

回答

0

有明顯某種查詢通話所發生的comments_template()調用的一部分,只是因爲不存在與循環調用。

當我把我的自定義功能在評論模板,它完美的作品。

我試圖把評論模板的內容到我的自定義環單模板,也沒有工作。

溶液卷繞被放置如果{}語句評價模板,然後建立基於所述結果的兩個不同的佈局。

現在這一切工作像它應該。