我希望我能理解你的要求,因为你没有提供太多信息。从什么我特别定制您的评论输出。
嗯,有一部分。这个wp_list_comments 在其他几个参数中接受回调参数。此回调允许您运行自定义函数;在您的示例中,是一个自定义函数,用于操作注释的标记/输出。
那么,让我们开始吧。假设您的HTML结构有点像这样:
<ul class="comments">
<?php $args = array(
\'type\' => \'comment\',
\'callback\' => custom_comments
);
wp_list_comments($args); ?>
</ul>
然后,您将创建一个名为*custom\\u comments*的函数,该函数看起来像这样:函数custom\\u comments($args,$comment,$depth){//您的代码..//来自DigWP的示例:
http://pastie.org/2986583}
希望有帮助!