输出数组中的COMMENT_AUTHER

时间:2012-04-20 作者:Dave Pitman

在函数中。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"] 
));  
?>

1 个回复
SO网友:Dave

我终于明白了。

我试图调用错误的wp函数。

通过使用get_comment_author() 而不是comment_author() 该链接按需要显示。

结束

相关推荐

Functions.php:从博客中排除类别

所以很明显,如何从模板中排除某些类别,但我不想修改4个模板,使它们忽略某个类别。有没有一种方法可以将某个类别从阅读设置的“博客”集中排除?我正在将博客分配到名为“博客”的页面。。。但显然,档案和搜索也需要对这一超出类别的内容视而不见。我宁愿在里面做functions.php