function mi_footer_personalizado_shortcode() {
// Configura aquí tu enlace de Instagram $enlace_instagram = https://www.instagram.com/cianeaestudio/';
$texto_footer = '<div style="text-align: center; padding: 20px; font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 10px;"> <!-- Icono de Instagram con enlace (Color personalizado) --> <a href="' . esc_url($enlace_instagram) . '" target="_blank" rel="noopener" style="color: #165c7d; display: inline-flex; align-items: center; transition: transform 0.2s;" onmouseover="this.style.transform=\'scale(1.1)\'" onmouseout="this.style.transform=\'scale(1)\'"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect> <path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path> <line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line> </svg> </a> <!-- Texto del Copyright --> <span>© ' . date('Y') . ' Mi Sitio Web. Todos los derechos reservados.</span> </div>'; return $texto_footer;}add_shortcode('mi_footer', 'mi_footer_personalizado_shortcode');