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)) ?>"> –
<?php get_comment_date() ?> at <?php get_comment_time() ?></a><?php edit_comment_link(__('(Edit)'),' ','') ?>
</div>
</div>
<?php }?>
它不返回任何意見,並且對生活我,我不明白爲什麼。我遵循WP代碼中的指示信函。有沒有我忽略的東西?
感謝您的幫助!
TY
即使在這裏有一些Wordpress的裂縫,這更是一個編程網站。考慮[在wordpress論壇上提出wordpress支持請求](http://wordpress.org/support/forum/how-to-and-troubleshooting)。 – hakre
我知道。如果問題是我的PHP代碼,我在這裏發佈它。 –
看起來更多,當你在這裏使用回調函數時,wordpress會像'comment_class()'這樣的函數傳遞,並且東西不起作用。我懷疑設置一個全局變量還不夠。但這只是一個猜測,希望有所幫助。 – hakre