如何重新链接“登录以回复”链接

时间:2018-07-05 10:33:28

标签: wordpress

我需要将“登录”链接重新链接到WordPress上的其他链接。帮助详情:)

enter image description here

1 个答案:

答案 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; 

     } 

 }