' . get_avatar( get_current_user_id(), $size = '24' ) . '' . esc_html__( 'Logout', 'porto' ) . '';
} else {
$login_link = '';
$register_link = '';
if ( class_exists( 'WooCommerce' ) ) {
$login_link = wc_get_page_permalink( 'myaccount' );
if ( get_option( 'woocommerce_enable_myaccount_registration' ) === 'yes' ) {
$register_link = wc_get_page_permalink( 'myaccount' );
}
} else {
$login_link = wp_login_url( get_home_url() );
$active_signup = get_site_option( 'registration', 'none' );
$active_signup = apply_filters( 'wpmu_active_signup', $active_signup );
if ( 'none' != $active_signup ) {
$register_link = wp_registration_url( get_home_url() );
}
}
if ( $register_link && isset( $porto_settings['menu-enable-register'] ) && $porto_settings['menu-enable-register'] ) {
echo '' . esc_html__( 'Register', 'porto' ) . '';
}
echo '' . esc_html__( 'Login', 'porto' ) . '';
}
}
?>