











// Shortcode para botón de acceso con Google (Nextend Social Login)
function boton_google_acceso_shortcode($atts) {
$atts = shortcode_atts(
array(
'texto' => 'Acceder', // Texto por defecto del botón
'imagen' => '', // URL de imagen opcional
),
$atts,
'google_login'
);// Enlace base
$link = 'https://letrasagogo.com/wp-login.php?loginSocial=google';// Código HTML
$output = '';
$output .= esc_html($atts['texto']);
$output .= '';// Si hay imagen, la añadimos como segundo enlace
if (!empty($atts['imagen'])) {
$output .= '';
$output .= '
';
$output .= '';
}return $output;
}
add_shortcode('google_login', 'boton_google_acceso_shortcode');
