Snippet para agregar un código de whatsapp flotante en el footer:
add_action('wp_footer','dcms_add_footer_whatsapp');
function dcms_add_footer_whatsapp(){
$tel = "5555555555";
$ms = urlencode("");
$url = "https://wa.me/${tel}?text=${ms}";
$img = get_stylesheet_directory_uri().'/img/whatsapp-icon.svg';
echo "<div id='float-whatsapp' style='position:fixed;bottom:40px;right:40px;'>";
echo " <a href=${url} target='_blank'>";
echo " <img src='${img}' width=60 height=60 />";
echo " </a>";
echo "</div>";
}
Agregar esto a functions.php y cargar el siguiente archivo al child theme en get_stylesheet_directory_uri().’/img/whatsapp-icon.svg’: whatsapp-icon.svg


Comentarios recientes