Mobel Linea
Mostrando los 4 resultados
/** * Instalaciones HOM: structured data and accessibility enhancements. * Kept separate from theme logic so it is easy to audit or revert. */ function hom_output_structured_data() { if ( is_admin() ) { return; } $logo = 'https://instalacioneshom.es/wp-content/uploads/2024/02/logo-instalaciones-hom.svg'; $organization = array( '@context' => 'https://schema.org', '@graph' => array( array( '@type' => 'Organization', '@id' => 'https://instalacioneshom.es/#organization', 'name' => 'Instalaciones HOM', 'url' => 'https://instalacioneshom.es/', 'logo' => array( '@type' => 'ImageObject', 'url' => $logo, ), ), array( '@type' => 'LocalBusiness', '@id' => 'https://instalacioneshom.es/#asturias', 'name' => 'Instalaciones HOM - Sede Central', 'url' => 'https://instalacioneshom.es/', 'image' => $logo, 'telephone' => '+34984187270', 'email' => 'info@instalacioneshom.es', 'parentOrganization' => array( '@id' => 'https://instalacioneshom.es/#organization' ), 'address' => array( '@type' => 'PostalAddress', 'streetAddress' => 'Plaza del Sueve, 101, Polígono Industrial de Silvota', 'postalCode' => '33192', 'addressLocality' => 'Llanera', 'addressRegion' => 'Asturias', 'addressCountry' => 'ES', ), ), array( '@type' => 'LocalBusiness', '@id' => 'https://instalacioneshom.es/#leon', 'name' => 'Instalaciones HOM - Delegación León', 'url' => 'https://instalacioneshom.es/contacto/', 'image' => $logo, 'telephone' => '+34987265457', 'email' => 'leon@instalacioneshom.es', 'parentOrganization' => array( '@id' => 'https://instalacioneshom.es/#organization' ), 'address' => array( '@type' => 'PostalAddress', 'streetAddress' => 'Camino de Ribaseca, 2', 'postalCode' => '24231', 'addressLocality' => 'Onzonilla', 'addressRegion' => 'León', 'addressCountry' => 'ES', ), ), ), ); echo '' . "\n"; } add_action( 'wp_head', 'hom_output_structured_data', 30 ); function hom_set_open_graph_site_name( $site_name ) { return 'Instalaciones HOM'; } add_filter( 'wpseo_opengraph_site_name', 'hom_set_open_graph_site_name' ); function hom_enqueue_accessibility_improvements() { $css = 'a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex="0"]:focus-visible { outline: 3px solid #005fcc !important; outline-offset: 3px !important; }'; wp_add_inline_style( 'hello-elementor-theme-style', $css ); $script = "document.addEventListener('DOMContentLoaded',function(){var content=document.getElementById('content');if(content&&!content.hasAttribute('role')){content.setAttribute('role','main');}document.querySelectorAll('.elementor-widget-theme-site-logo a img,.site-logo a img').forEach(function(img){var link=img.closest('a');if(link&&!link.getAttribute('aria-label')){link.setAttribute('aria-label','Inicio - Instalaciones HOM');}if(!img.getAttribute('alt')){img.setAttribute('alt','Instalaciones HOM');}});document.querySelectorAll('.elementor-toggle-title:not([href])').forEach(function(control){control.setAttribute('role','button');if(!control.hasAttribute('aria-expanded')){control.setAttribute('aria-expanded','false');}control.addEventListener('keydown',function(event){if(event.key===' '){event.preventDefault();control.click();}});});});"; wp_register_script( 'hom-accessibility', false, array(), null, true ); wp_enqueue_script( 'hom-accessibility' ); wp_add_inline_script( 'hom-accessibility', $script ); } add_action( 'wp_enqueue_scripts', 'hom_enqueue_accessibility_improvements', 30 ); function hom_fix_read_more_accessible_label( $html ) { return str_replace( 'aria-label="Lee más sobre', 'aria-label="Leer más sobre', $html ); } add_filter( 'woocommerce_loop_add_to_cart_link', 'hom_fix_read_more_accessible_label', 10, 1 );