WordPress Comment functions

时间:2011-12-08 作者:Adnan

正如我们所知,我们通常可以通过调用\\u content()来更改“内容”。是否有可供评论的等效功能?你知道吗?

2 个回复
SO网友:cr0z3r

我希望我能理解你的要求,因为你没有提供太多信息。从什么我特别定制您的评论输出。

嗯,有一部分。这个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}

希望有帮助!

SO网友:Tara

codex 列出了许多用于注释的函数。

结束

相关推荐

获取在Functions.php中设置的变量,并在我的Custom Post模板中回显它们

在我的函数中设置了以下函数。php文件,以允许我的自定义帖子类型“Slideshow”工作。add_action( \'the_post\', \'paginate_slide\' ); function paginate_slide( $post ) { global $pages, $multipage, $numpages; if( is_single() && get_post_type() == \'lom_s