代码之家  ›  专栏  ›  技术社区  ›  Rajdeep

如何重新链接登录以答复。链接

  •  0
  • Rajdeep  · 技术社区  · 8 年前

    伙计们,我需要将登录链接重新链接到WordPress上的其他链接。请帮我:)

    enter image description here

    1 回复  |  直到 8 年前
        1
  •  1
  •   Sudharshan Nair    8 年前

    您可以使用此挂钩修改链接

    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; 
    
         } 
    
     }