WordPress功能函数cancel_comment_reply_link()
WordPress功能函数cancel_comment_reply_link(),显示取消评论回复链接的HTML内容。
用法:
cancel_comment_reply_link( string $text = ” )
参数
$text
(string) (可选) 为取消回复链接显示的文本。如果为空,默认为“点击这里取消回复”。
默认值: ”
来源
文件: wp-includes/comment-template.php
function cancel_comment_reply_link( $text = ” ) {
echo get_cancel_comment_reply_link( $text );
}
更新日志:
用户贡献的笔记
(由Codex – 5年前贡献)
基本的例子
默认使用
<?php cancel_comment_reply_link(); ?>
使用自定义的文本
<?php cancel_comment_reply_link( __( ‘Cancel Reply’, ‘textdomain’ ) ); ?>