在函数中。php对于部分自定义注释,我有以下回音数组作为链接来响应以前的注释:
<?php echo comment_reply_link(array(
"before" => " <span class=\\"comment-reply-link\\">",
"after" => "</span>",
"reply_text" => "Reply to this comment",
"depth" => $depth,
"max_depth" => $args["max_depth"]
));
?>
我正在尝试获取链接,以将“this”一词替换为
comment_author()
.
我是php的新手,尝试了我能想到的所有语法,但都失败了。如果有人能帮我,我将不胜感激。
明确地说,我正在寻找一种方法来完成以下工作。
<?php echo comment_reply_link(array(
"before" => " <span class=\\"comment-reply-link\\">",
"after" => "</span>",
"reply_text" => "Reply to " . echo comment_author() here . "\'s comment",
"depth" => $depth,
"max_depth" => $args["max_depth"]
));
?>