评论。php
<?php
$args=array(
\'type\'=> \'comment\',
\'callback\'=>\'my_comment_list\',
);
?>
<ol class="comments-list">
<?php wp_list_comments($args) ?>
</ol>
功能。php
function my_comment_list($comment,$arg,$depth){
}
尝试创建名为my\\u comment\\u list的回调函数时,回调函数似乎需要三种类型的参数,
$ comment, $ arg, $ depth
,
我的问题是:
How do you know you need these arguments for callback function?和Where do you get detailed explanations of arguments, etc.?
我通常参考Wordpress模板标签和函数中的以下链接,但它不在那里。。。
Wordpress Developer Resource