答案 0 :(得分:1)
您可以使用此挂钩修改链接
if ( ! function_exists( 't5_do_not_ask_for_comment_log_in' ) ) {
add_filter( 'comment_reply_link', 't5_do_not_ask_for_comment_log_in' ); /** * Replaces the log-in link with an empty string. * * @param string $link * @return string */
function t5_do_not_ask_for_comment_log_in( $link ) {
if ( empty ( $GLOBALS['user_ID'] ) && get_option( 'comment_registration' ) ) {
return ''; // add your link here
}
return $link;
}
}