/** * Rhythm functions and definitions * * @package Rhythm */ /** * Theme options variable $ts_theme_options */ define ('REDUX_OPT_NAME', 'ts_theme_options'); /** * Setting constant to inform the plugin that them is activated */ define ('RHYTHM_THEME_ACTIVATED' , true); /** * Theme version used for styles,js */ define ('TS_THEME_VERSION','103'); /** * Helper functions */ require get_template_directory() . '/inc/helpers.php'; /** * Template parts functions */ require get_template_directory() . '/inc/template-parts.php'; /** * Theme extensions */ require get_template_directory() . '/extensions/admin.php'; /** * Add Redux Framework & extras */ require get_template_directory() . '/admin/admin-init.php'; /** * Set the content width based on the theme's design and stylesheet. */ if ( ! isset( $content_width ) ) { $content_width = 640; /* pixels */ } if ( ! function_exists( 'rhythm_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function rhythm_setup() { define ('TINY_EXCERPT', 10); define ('SHORT_EXCERPT', 20); define ('REGULAR_EXCERPT', 40); define ('LONG_EXCERPT', 60); /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Rhythm, use a find and replace * to change 'rhythm' to the name of your theme in all the template files */ load_theme_textdomain( 'rhythm', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /** * Custom image sizes */ add_theme_support( 'post-thumbnails' ); if (function_exists('rhythm_add_image_sizes')) { rhythm_add_image_sizes(); } /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ //add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'rhythm' ), 'preheader-left' => __( 'Preheader left', 'rhythm' ), 'preheader-right' => __( 'Preheader right', 'rhythm' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'gallery', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'rhythm_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); //woocommerce support add_theme_support( 'woocommerce' ); } endif; // rhythm_setup add_action( 'after_setup_theme', 'rhythm_setup' ); if (!function_exists('rhythm_add_image_sizes')) { /** * Add image sizes */ function rhythm_add_image_sizes() { add_image_size('ts-tiny', 70, 70, true); add_image_size('ts-thumb', 458, 247, true); add_image_size('ts-thumb-no-crop', 458, 247); add_image_size('ts-medium', 570, 367, true); add_image_size('ts-big', 720, 463, true); add_image_size('ts-full-alt', 650, 418, true); add_image_size('ts-vertical-alt', 650, 836, true); add_image_size('ts-full', 1140, 642, true); add_image_size('ts-vertical', 360, 438, true); add_image_size('ts-horizontal-thumb', 90, 60, true); add_image_size('ts-magazine', 617, 347, true); } } /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function rhythm_widgets_init() { register_sidebar( array( 'name' => __( 'Main Sidebar', 'rhythm' ), 'id' => 'main', 'description' => '', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h5 class="widget-title font-alt">', 'after_title' => '</h5>', ) ); for ($i = 1; $i <= 4; $i++) { register_sidebar( array( 'name' => __( 'Footer Sidebar', 'rhythm' ).' '.$i, 'id' => 'footer-'.$i, 'description' => '', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h5 class="widget-title font-alt">', 'after_title' => '</h5>', ) ); } //adding custom sidebars defined in theme options $custom_sidebars = ts_get_opt('custom-sidebars'); if (is_array($custom_sidebars)) { foreach ($custom_sidebars as $sidebar) { if (empty($sidebar)) { continue; } register_sidebar ( array ( 'name' => $sidebar, 'id' => sanitize_title ( $sidebar ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h5 class="widget-title font-alt">', 'after_title' => '</h5>', ) ); } } if (ts_woocommerce_enabled()) { register_sidebar( array( 'name' => __( 'Shop Single Post Sidebar', 'rhythm' ), 'id' => 'shop-single', 'description' => '', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h5 class="widget-title font-alt">', 'after_title' => '</h5>', ) ); } } add_action( 'widgets_init', 'rhythm_widgets_init' ); /** * Prepare google fonts array */ function rhythm_prepare_google_fonts_url() { /* Translators: If there are characters in your language that are not * supported by Open Sans, translate this to 'off'. Do not translate * into your own language. */ $dosis = esc_html_x( 'on', 'Dosis font: on or off', 'theme-slug' ); /* Translators: If there are characters in your language that are not * supported by Open Sans, translate this to 'off'. Do not translate * into your own language. */ $open_sans = esc_html_x( 'on', 'Open Sans font: on or off', 'theme-slug' ); if ($dosis !== 'off' || $open_sans !== 'off') { $font_families = array(); } if ( $dosis !== 'off' ) { $font_families[] = 'Dosis:300,400,700'; } if ( $open_sans !== 'off' ) { $font_families[] = 'Open Sans:400italic,700italic,400,300,700'; } $character_sets = ts_get_opt('character-sets'); $sets = array('latin'); if (is_array($character_sets)) { foreach ($character_sets as $set => $val) { if ($val == 1) { $sets[] = $set; } } } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( implode( ',', $sets ) ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); return esc_url_raw( $fonts_url ); } /** * Enqueue google fonts */ function rhythm_google_fonts() { wp_enqueue_style( 'rhythm-fonts', rhythm_prepare_google_fonts_url(), array(), null ); if (is_rtl()) { wp_enqueue_style( 'rhythm-fonts-rtl', 'https://fonts.googleapis.com/earlyaccess/notosanskufiarabic.css', array(), null ); } } add_action( 'wp_enqueue_scripts', 'rhythm_google_fonts' ); /** * Enqueue scripts and styles. */ function rhythm_scripts() { wp_register_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css',null, TS_THEME_VERSION); wp_register_style( 'rhythm-main', get_template_directory_uri() . '/css/style.css',null, TS_THEME_VERSION); wp_register_style( 'rhythm-responsive', get_template_directory_uri() . '/css/style-responsive.css',null, TS_THEME_VERSION); wp_register_style( 'animate', get_template_directory_uri() . '/css/animate.min.css',null, TS_THEME_VERSION); wp_register_style( 'vertical-rhythm', get_template_directory_uri() . '/css/vertical-rhythm.min.css',null, TS_THEME_VERSION); wp_register_style( 'owl-carousel', get_template_directory_uri() . '/css/owl.carousel.css',null, TS_THEME_VERSION); wp_register_style( 'magnific-popup', get_template_directory_uri() . '/css/magnific-popup.css',null, TS_THEME_VERSION); wp_register_style( 'fontawesome', get_template_directory_uri() . '/css/font-awesome.min.css',null, TS_THEME_VERSION); wp_register_style( 'et-line', get_template_directory_uri() . '/css/et-line.css',null, TS_THEME_VERSION); wp_enqueue_style( 'bootstrap'); wp_enqueue_style( 'rhythm-main'); wp_enqueue_style( 'rhythm-responsive'); wp_enqueue_style( 'animate'); if ( is_rtl() ) { wp_enqueue_style( 'bootstrap-rtl', get_template_directory_uri() . '/css/bootstrap-rtl.min.css',null, TS_THEME_VERSION); wp_enqueue_style( 'rhythm-main-rtl', get_template_directory_uri() . '/css/style-rtl.css',null, TS_THEME_VERSION); wp_enqueue_style( 'rhythm-responsive-rtl', get_template_directory_uri() . '/css/style-responsive-rtl.css',null, TS_THEME_VERSION); } wp_enqueue_style( 'vertical-rhythm'); wp_enqueue_style( 'owl-carousel'); wp_enqueue_style( 'magnific-popup'); wp_enqueue_style( 'fontawesome'); wp_enqueue_style( 'et-line'); wp_enqueue_style( 'rhythm-style', get_stylesheet_uri() ); wp_register_script( 'jquery-easing', get_template_directory_uri().'/js/jquery.easing.1.3.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'bootstrap', get_template_directory_uri().'/js/bootstrap.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-scrollTo', get_template_directory_uri().'/js/jquery.scrollTo.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-localScroll', get_template_directory_uri().'/js/jquery.localScroll.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-viewport', get_template_directory_uri().'/js/jquery.viewport.mini.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-countTo', get_template_directory_uri().'/js/jquery.countTo.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-tilt', get_template_directory_uri().'/js/tiltfx.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-appear', get_template_directory_uri().'/js/jquery.appear.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-sticky', get_template_directory_uri().'/js/jquery.sticky.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-parallax', get_template_directory_uri().'/js/jquery.parallax-1.1.3.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-fitvids', get_template_directory_uri().'/js/jquery.fitvids.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'owl-carousel', get_template_directory_uri().'/js/owl.carousel.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'isotope-pkgd', get_template_directory_uri().'/js/isotope.pkgd.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'imagesloaded-pkgd', get_template_directory_uri().'/js/imagesloaded.pkgd.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-magnific-popup', get_template_directory_uri().'/js/jquery.magnific-popup.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'gmapsensor', 'http://maps.google.com/maps/api/js?sensor=false',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'gmap3', get_template_directory_uri().'/js/gmap3.min.js',array('gmapsensor'),TS_THEME_VERSION,true); wp_register_script( 'wow', get_template_directory_uri().'/js/wow.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'masonry-pkgd', get_template_directory_uri().'/js/masonry.pkgd.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-simple-text-rotator', get_template_directory_uri().'/js/jquery.simple-text-rotator.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'all', get_template_directory_uri().'/js/all.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'mb-YTPlayer', get_template_directory_uri().'/js/jquery.mb.YTPlayer.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-vide', get_template_directory_uri().'/js/jquery.vide.min.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'jquery-timer', get_template_directory_uri().'/js/jquery.downCount.js',array('jquery'),TS_THEME_VERSION,true); wp_register_script( 'form-validator', get_template_directory_uri().'/js/validator.min.js',array('jquery','bootstrap'),TS_THEME_VERSION,true); // wp_localize wp_localize_script('all', 'get', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'siteurl' => get_template_directory_uri() ) ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'jquery-easing' ); wp_enqueue_script( 'bootstrap' ); wp_enqueue_script( 'jquery-scrollTo' ); wp_enqueue_script( 'jquery-localScroll' ); wp_enqueue_script( 'jquery-viewport' ); wp_enqueue_script( 'jquery-sticky' ); wp_enqueue_script( 'jquery-parallax' ); wp_enqueue_script( 'wow' ); wp_enqueue_script( 'all' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'rhythm_scripts' ); $ie10js = create_function( '', 'echo \'<!--[if lt IE 10]><script type="text/javascript" src="\'.get_template_directory_uri().\'/js/placeholder.js"></script><![endif]-->\';' ); add_action( 'wp_head', $ie10js ); /** * Define woocommerce image sizes */ function rhythm_woocommerce_image_dimensions() { global $pagenow; if ( ! isset( $_GET['activated'] ) || $pagenow != 'themes.php' ) { return; } $catalog = array( 'width' => '720', // px 'height' => '918', // px 'crop' => 1 // true ); $single = array( 'width' => '720', // px 'height' => '918', // px 'crop' => 1 // true ); $thumbnail = array( 'width' => '158', // px 'height' => '201', // px 'crop' => 0 // false ); // Image sizes update_option( 'shop_catalog_image_size', $catalog ); // Product category thumbs update_option( 'shop_single_image_size', $single ); // Single product image update_option( 'shop_thumbnail_image_size', $thumbnail ); // Image gallery thumbs } add_action( 'after_switch_theme', 'rhythm_woocommerce_image_dimensions', 1 ); /** * Change excerpt 'more' * @param type $more * @return string */ function rhythm_change_excerpt( $more ) { return ''; } add_filter('excerpt_more', 'rhythm_change_excerpt'); /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Singleton class supports passing arguments to the templates */ require get_template_directory() . '/extensions/class/ThemeArguments.class.php'; /** * Excerpt class */ require get_template_directory() . '/extensions/class/Excerpt.class.php'; /** * Custom menus */ require get_template_directory() . '/inc/custom-menus.php'; /** * WooCommerce integration */ require get_template_directory() . '/inc/woocommerce.php'; /** * Sample data importer */ require get_template_directory() . '/extensions/importer/importer.php'; <!DOCTYPE html> <html dir="ltr" lang="es" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://toldospozuelo.es/xmlrpc.php"> <!-- All in One SEO 4.9.1.1 - aioseo.com --> <meta name="robots" content="max-image-preview:large" /> <link rel="canonical" href="https://toldospozuelo.es/" /> <meta name="generator" content="All in One SEO (AIOSEO) 4.9.1.1" /> <meta property="og:locale" content="es_ES" /> <meta property="og:site_name" content="Toldos Pozuelo - Tu tienda de toldos en Pozuelo" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Toldos Pozuelo - Toldos Pozuelo" /> <meta property="og:url" content="https://toldospozuelo.es/" /> <meta property="article:published_time" content="2017-12-28T20:45:52+00:00" /> <meta property="article:modified_time" content="2025-08-18T15:16:39+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Toldos Pozuelo - Toldos Pozuelo" /> <script type="application/ld+json" class="aioseo-schema"> {"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/toldospozuelo.es\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/toldospozuelo.es#listItem","position":1,"name":"Home"}]},{"@type":"Organization","@id":"https:\/\/toldospozuelo.es\/#organization","name":"Toldos Pozuelo","description":"Tu tienda de toldos en Pozuelo","url":"https:\/\/toldospozuelo.es\/"},{"@type":"WebPage","@id":"https:\/\/toldospozuelo.es\/#webpage","url":"https:\/\/toldospozuelo.es\/","name":"Toldos Pozuelo - Toldos Pozuelo","inLanguage":"es-ES","isPartOf":{"@id":"https:\/\/toldospozuelo.es\/#website"},"breadcrumb":{"@id":"https:\/\/toldospozuelo.es\/#breadcrumblist"},"datePublished":"2017-12-28T20:45:52+00:00","dateModified":"2025-08-18T15:16:39+00:00"},{"@type":"WebSite","@id":"https:\/\/toldospozuelo.es\/#website","url":"https:\/\/toldospozuelo.es\/","name":"Toldos Pozuelo","description":"Tu tienda de toldos en Pozuelo","inLanguage":"es-ES","publisher":{"@id":"https:\/\/toldospozuelo.es\/#organization"}}]} </script> <!-- All in One SEO --> <!-- Google Tag Manager for WordPress by gtm4wp.com --> <script data-cfasync="false" data-pagespeed-no-defer> var gtm4wp_datalayer_name = "dataLayer"; var dataLayer = dataLayer || []; </script> <!-- End Google Tag Manager for WordPress by gtm4wp.com --><link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" type="application/rss+xml" title="Toldos Pozuelo » Comentario Toldos Pozuelo del feed" href="https://toldospozuelo.es/toldos-de-calidad-en-madrid/feed/" /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://toldospozuelo.es/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftoldospozuelo.es%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://toldospozuelo.es/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftoldospozuelo.es%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='contact-form-7-css' href='https://toldospozuelo.es/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.4' type='text/css' media='all' /> <link rel='stylesheet' id='responsive-lightbox-swipebox-css' href='https://toldospozuelo.es/wp-content/plugins/responsive-lightbox/assets/swipebox/swipebox.min.css?ver=1.5.2' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='https://toldospozuelo.es/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=10.4.2' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://toldospozuelo.es/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=10.4.2' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://toldospozuelo.es/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=10.4.2' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } /*# sourceURL=woocommerce-inline-inline-css */ </style> <link rel='stylesheet' id='js_composer_front-css' href='https://toldospozuelo.es/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=4.11.2' type='text/css' media='all' /> <script type="text/javascript" src="https://toldospozuelo.es/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://toldospozuelo.es/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/responsive-lightbox/assets/swipebox/jquery.swipebox.min.js?ver=1.5.2" id="responsive-lightbox-swipebox-js"></script> <script type="text/javascript" src="https://toldospozuelo.es/wp-includes/js/underscore.min.js?ver=1.13.7" id="underscore-js"></script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/responsive-lightbox/assets/infinitescroll/infinite-scroll.pkgd.min.js?ver=4.0.1" id="responsive-lightbox-infinite-scroll-js"></script> <script type="text/javascript" id="responsive-lightbox-js-before"> /* <![CDATA[ */ var rlArgs = {"script":"swipebox","selector":"lightbox","customEvents":"","activeGalleries":true,"animation":true,"hideCloseButtonOnMobile":false,"removeBarsOnMobile":false,"hideBars":true,"hideBarsDelay":5000,"videoMaxWidth":1080,"useSVG":true,"loopAtEnd":false,"woocommerce_gallery":false,"ajaxurl":"https:\/\/toldospozuelo.es\/wp-admin\/admin-ajax.php","nonce":"dee948f671","preview":false,"postId":12,"scriptExtension":false}; //# sourceURL=responsive-lightbox-js-before /* ]]> */ </script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/responsive-lightbox/js/front.js?ver=2.5.5" id="responsive-lightbox-js"></script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.4.2" id="wc-jquery-blockui-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="wc-add-to-cart-js-extra"> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_view_cart":"Ver carrito","cart_url":"https://toldospozuelo.es/carrito-2/","is_cart":"","cart_redirect_after_add":"no"}; //# sourceURL=wc-add-to-cart-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=10.4.2" id="wc-add-to-cart-js" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.4.2" id="wc-js-cookie-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="woocommerce-js-extra"> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_password_show":"Mostrar contrase\u00f1a","i18n_password_hide":"Ocultar contrase\u00f1a"}; //# sourceURL=woocommerce-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=10.4.2" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://toldospozuelo.es/wp-content/plugins/js_composer/assets/js/vendors/woocommerce-add-to-cart.js?ver=4.11.2" id="vc_woocommerce-add-to-cart-js-js"></script> <link rel="https://api.w.org/" href="https://toldospozuelo.es/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://toldospozuelo.es/wp-json/wp/v2/pages/12" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://toldospozuelo.es/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9" /> <meta name="generator" content="WooCommerce 10.4.2" /> <link rel='shortlink' href='https://toldospozuelo.es/' /> <meta name="generator" content="Site Kit by Google 1.149.1" /> <!-- Google Tag Manager for WordPress by gtm4wp.com --> <!-- GTM Container placement set to footer --> <script data-cfasync="false" data-pagespeed-no-defer> var dataLayer_content = {"pagePostType":"frontpage","pagePostType2":"single-page","pagePostAuthor":"admin"}; dataLayer.push( dataLayer_content ); </script> <script data-cfasync="false"> (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MJDX94V'); </script> <!-- End Google Tag Manager for WordPress by gtm4wp.com --> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="generator" content="Powered by Visual Composer - drag and drop page builder for WordPress."/> <!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="https://toldospozuelo.es/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><!--[if IE 8]><link rel="stylesheet" type="text/css" href="https://toldospozuelo.es/wp-content/plugins/js_composer/assets/css/vc-ie8.min.css" media="screen"><![endif]--> <style type="text/css" id="wp-custom-css"> ul#primary-nav { width: 100%; justify-content: center; } </style> <style type="text/css" data-type="vc_custom-css">.vc_carousel-inner img.attachment-full { width: 100%; }</style><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head> <body class="home wp-singular page-template-default page page-id-12 wp-theme-rhythm theme-rhythm woocommerce-no-js wpb-js-composer js-comp-ver-4.11.2 vc_responsive">