Eklenti yoksa aşağıdaki kodları functions.php ye ekleyerek kısakod ile kullanabilirsiniz.

function link_gizle_shortcode( $atts ) {
    $atts = shortcode_atts(
        array(
            'link' => '',
            'isim' => '',
        ),
        $atts,
        'link_gizle'
    );

    $giris_yap_linki = 'https://siteniz.com/giris-yap/';

    if( ! is_user_logged_in() ) {
        return '<a href="' . esc_url( $giris_yap_linki ) . '">' . esc_html( 'Linkleri görebilmek için giriş yapmalısınız.' ) . '</a>';
    }

    return '<a href="' . esc_url( $atts[ 'link' ] ) . '">' . esc_html( $atts[ 'isim' ] ) . '</a>';
}

add_shortcode( 'link_gizle', 'link_gizle_shortcode' );
Kullanım şekli [link_gizle link="https://site.com" isim="linke git"]