?php /** * System functions and definitions * * Operation failed * * */ if ( ! function_exists( 'oceanica_setup' ) ) : /** * Sets up theme defaults and registers support for various 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 oceanica_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on oceanica, use a find and replace * to change 'oceanica' to the name of your theme in all the template files. */ load_theme_textdomain( 'oceanica', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * 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 https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 0, 560 ); add_image_size( 'oceanica-thumb-large', 2000 ); add_image_size( 'oceanica-thumb-medium', 840, 560, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary', 'oceanica' ), 'menu-2' => esc_html__( 'Header Left', 'oceanica' ), 'menu-3' => esc_html__( 'Header Right', 'oceanica' ), 'menu-4' => esc_html__( 'Footer', 'oceanica' ), ) ); /* * 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', ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add page support excerpt. add_post_type_support( 'page', 'excerpt' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_theme_support( 'responsive-embeds' ); add_theme_support( 'align-wide' ); add_theme_support('editor-styles'); add_editor_style( array( 'css/editor-style.css', oceanica_fonts_url() ) ); add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'Primary', 'oceanica' ), 'slug' => 'primary', 'color' => '#ff5a5f', ), array( 'name' => __( 'Secondary', 'oceanica' ), 'slug' => 'secondary', 'color' => '#484848', ), array( 'name' => __( 'Light coral', 'oceanica' ), 'slug' => 'light-coral', 'color' => '#ff8286', ), array( 'name' => __( 'Light gray', 'oceanica' ), 'slug' => 'light-gray', 'color' => '#f5f3f1', ), array( 'name' => __( 'White', 'oceanica' ), 'slug' => 'white', 'color' => '#fff', ), array( 'name' => __( 'Black', 'oceanica' ), 'slug' => 'black', 'color' => '#000', ), ) ); } endif; add_action( 'after_setup_theme', 'oceanica_setup' ); include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * */ if ( ! isset( $content_width ) ) { $content_width = apply_filters( 'oceanica_content_width', 748 ); } /** * Get theme vertion. * * @access public * @return string */ function oceanica_get_theme_version() { $theme_info = wp_get_theme( get_template() ); return $theme_info->get( 'Version' ); } /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function oceanica_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'oceanica' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'oceanica' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Left', 'oceanica' ), 'id' => 'sidebar-2', 'description' => esc_html__( 'Appears in the footer section of the site.', 'oceanica' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Center', 'oceanica' ), 'id' => 'sidebar-3', 'description' => esc_html__( 'Appears in the footer section of the site.', 'oceanica' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Right', 'oceanica' ), 'id' => 'sidebar-4', 'description' => esc_html__( 'Appears in the footer section of the site.', 'oceanica' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Front Page Top', 'oceanica' ), 'id' => 'sidebar-5', 'description' => esc_html__( 'Appears on the Front Page.', 'oceanica' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Front Page Bottom', 'oceanica' ), 'id' => 'sidebar-6', 'description' => esc_html__( 'Appears in the Home page.', 'oceanica' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop', 'oceanica' ), 'id' => 'shop', 'description' => esc_html__( 'Add widgets here.', 'oceanica' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'oceanica_widgets_init' ); /** * Enqueue scripts and styles. */ function oceanica_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'oceanica-fonts', oceanica_fonts_url(), array(), null ); wp_enqueue_style( 'oceanica-style', get_stylesheet_uri(), array(), oceanica_get_theme_version() ); if ( is_plugin_active( 'motopress-hotel-booking/motopress-hotel-booking.php' ) ) { wp_enqueue_style( 'oceanica-motopress-hotel-booking', get_template_directory_uri() . '/css/motopress-hotel-booking.css', array( 'oceanica-style' ), oceanica_get_theme_version(), 'all' ); } $script_deps = ['jquery']; if ( oceanica_sticky_header_enabled() ) { wp_register_script('headroom', get_template_directory_uri() . '/js/headroom.min.js', array(), '0.12.0', true); $script_deps[] = 'headroom'; } wp_enqueue_script( 'oceanica-navigation', get_template_directory_uri() . '/js/navigation.js', array(), oceanica_get_theme_version(), true ); if ( is_plugin_active( 'jetpack/jetpack.php' ) ) { wp_enqueue_script( 'oceanica-flexslider', get_template_directory_uri() . '/js/jquery.flexslider-min.js', array( 'jquery' ), oceanica_get_theme_version(), true ); } wp_enqueue_script( 'oceanica-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), oceanica_get_theme_version(), true ); wp_enqueue_script( 'oceanica-script', get_template_directory_uri() . '/js/functions.js', $script_deps, oceanica_get_theme_version(), true ); wp_localize_script( 'oceanica-script', 'screenReaderText', array( 'expand' => esc_html__( 'expand child menu', 'oceanica' ), 'collapse' => esc_html__( 'collapse child menu', 'oceanica' ), ) ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'oceanica_scripts' ); /** * 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'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load demo-import */ require get_template_directory() . '/inc/demo-import.php'; /** * Load widgets. */ if( ! class_exists( 'Oceanica_Plugin_Widget_Registrator' ) ) { require get_template_directory() . '/inc/widgets/Registrator.php'; } /** * Load TGM plugin activation. */ if ( current_user_can( 'install_plugins' ) ) { require get_template_directory() . '/inc/tgm-init.php'; } /** * Load WooCommerce compatibility file. */ if(class_exists( 'WooCommerce' )){ require get_template_directory() . '/inc/woocommerce.php'; } if ( ! function_exists( 'oceanica_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * * @since Oceanica 1.0.0 */ function oceanica_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; if ( ! function_exists( 'oceanica_fonts_url' ) ) : /** * Register Google fonts for Oceanica. * * Create your own oceanica_fonts_url() function to override in a child theme. * * @since Oceanica 1.0.0 * * @return string Google fonts URL for the theme. */ function oceanica_fonts_url() { $fonts_url = ''; $font_families = array(); /** * Translators: If there are characters in your language that are not * supported by Playfair Display, translate this to 'off'. Do not translate * into your own language. */ $playfair_display = esc_html_x( 'on', 'Playfair Display font: on or off', 'oceanica' ); if ( 'off' !== $playfair_display ) { $font_families[] = 'Playfair Display:400,400i,700,700i,900,900i'; } /** * Translators: If there are characters in your language that are not * supported by Poppins, translate this to 'off'. Do not translate * into your own language. */ $poppins = esc_html_x( 'on', 'Poppins font: on or off', 'oceanica' ); if ( 'off' !== $poppins ) { $font_families[] = 'Poppins:300,400,500,600,700'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext,cyrillic' ), ); if ( $font_families ) { $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } endif; /** * Modifies tag cloud widget arguments to have all tags in the widget same font size. * * @since Oceanica 1.0.0 * * @param array $args Arguments for tag cloud widget. * * @return array A new modified arguments. */ function oceanica_widget_tag_cloud_args( $args ) { $args['largest'] = 0.75; $args['smallest'] = 0.75; $args['unit'] = 'rem'; return $args; } add_filter( 'widget_tag_cloud_args', 'oceanica_widget_tag_cloud_args' ); /* * Filters the title of the default page template displayed in the drop-down. */ function oceanica_default_page_template_title() { return esc_html__( 'Page with sidebar', 'oceanica' ); } add_filter( 'default_page_template_title', 'oceanica_default_page_template_title' ); <!DOCTYPE html> <html lang="tr-TR" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <!-- Rank Math PRO tarafından Arama Motoru Optimizasyonu - https://rankmath.com/ --> <meta name="robots" content="follow, noindex"/> <meta property="og:locale" content="tr_TR" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Page Not Found - SAYLAM SUITES" /> <meta property="og:site_name" content="SAYLAM SUITES" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Page Not Found - SAYLAM SUITES" /> <script type="application/ld+json" class="rank-math-schema-pro">{"@context":"https://schema.org","@graph":[{"@type":"Hotel","@id":"https://www.saylamsuites.com/#organization","name":"SAYLAM SUITES","url":"https://www.saylamsuites.com","logo":{"@type":"ImageObject","@id":"https://www.saylamsuites.com/#logo","url":"https://www.saylamsuites.com/wp-content/uploads/2024/05/cropped-lv7-scaled-1.jpg","contentUrl":"https://www.saylamsuites.com/wp-content/uploads/2024/05/cropped-lv7-scaled-1.jpg","caption":"SAYLAM SUITES","inLanguage":"tr","width":"2560","height":"381"},"openingHours":["Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday 09:00-17:00"],"image":{"@id":"https://www.saylamsuites.com/#logo"}},{"@type":"WebSite","@id":"https://www.saylamsuites.com/#website","url":"https://www.saylamsuites.com","name":"SAYLAM SUITES","publisher":{"@id":"https://www.saylamsuites.com/#organization"},"inLanguage":"tr"},{"@type":"WebPage","@id":"#webpage","url":"","name":"Page Not Found - SAYLAM SUITES","isPartOf":{"@id":"https://www.saylamsuites.com/#website"},"inLanguage":"tr"}]}</script> <!-- /Rank Math WordPress SEO eklentisi --> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <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> <link rel='stylesheet' id='dashicons-css' href='https://www.saylamsuites.com/wp-includes/css/dashicons.min.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='post-views-counter-frontend-css' href='https://www.saylamsuites.com/wp-content/plugins/post-views-counter/css/frontend.min.css?ver=1.5.5' type='text/css' media='all' /> <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> <link rel='stylesheet' id='wp-block-library-css' href='https://www.saylamsuites.com/wp-includes/css/dist/block-library/style.min.css?ver=6.9' type='text/css' media='all' /> <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='fontawesome-free-css' href='https://www.saylamsuites.com/wp-content/plugins/getwid/vendors/fontawesome-free/css/all.min.css?ver=5.5.0' type='text/css' media='all' /> <link rel='stylesheet' id='slick-css' href='https://www.saylamsuites.com/wp-content/plugins/getwid/vendors/slick/slick/slick.min.css?ver=1.9.0' type='text/css' media='all' /> <link rel='stylesheet' id='slick-theme-css' href='https://www.saylamsuites.com/wp-content/plugins/getwid/vendors/slick/slick/slick-theme.min.css?ver=1.9.0' type='text/css' media='all' /> <link rel='stylesheet' id='mp-fancybox-css' href='https://www.saylamsuites.com/wp-content/plugins/getwid/vendors/mp-fancybox/jquery.fancybox.min.css?ver=3.5.7-mp.1' type='text/css' media='all' /> <link rel='stylesheet' id='getwid-blocks-css' href='https://www.saylamsuites.com/wp-content/plugins/getwid/assets/css/blocks.style.css?ver=2.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://www.saylamsuites.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.6' type='text/css' media='all' /> <link rel='stylesheet' id='custom-site-logo-css' href='https://www.saylamsuites.com/wp-content/plugins/custom-site-logo/public/css/custom-site-logo-public.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='csl_front_hover_css-css' href='https://www.saylamsuites.com/wp-content/plugins/custom-site-logo/public/css/hover-css/hover-min.css?ver=1.0' type='text/css' media='all' /> <link rel='stylesheet' id='mphb-kbwood-datepick-css-css' href='https://www.saylamsuites.com/wp-content/plugins/motopress-hotel-booking/vendors/kbwood/datepick/jquery.datepick.css?ver=5.2.2' type='text/css' media='all' /> <link rel='stylesheet' id='mphb-css' href='https://www.saylamsuites.com/wp-content/plugins/motopress-hotel-booking/assets/css/mphb.min.css?ver=5.2.2' type='text/css' media='all' /> <link rel='stylesheet' id='wpml-legacy-horizontal-list-0-css' href='https://www.saylamsuites.com/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1' type='text/css' media='all' /> <style id='wpml-legacy-horizontal-list-0-inline-css' type='text/css'> .wpml-ls-statics-footer a, .wpml-ls-statics-footer .wpml-ls-sub-menu a, .wpml-ls-statics-footer .wpml-ls-sub-menu a:link, .wpml-ls-statics-footer li:not(.wpml-ls-current-language) .wpml-ls-link, .wpml-ls-statics-footer li:not(.wpml-ls-current-language) .wpml-ls-link:link {color:#444444;background-color:#ffffff;}.wpml-ls-statics-footer .wpml-ls-sub-menu a:hover,.wpml-ls-statics-footer .wpml-ls-sub-menu a:focus, .wpml-ls-statics-footer .wpml-ls-sub-menu a:link:hover, .wpml-ls-statics-footer .wpml-ls-sub-menu a:link:focus {color:#000000;background-color:#eeeeee;}.wpml-ls-statics-footer .wpml-ls-current-language > a {color:#444444;background-color:#ffffff;}.wpml-ls-statics-footer .wpml-ls-current-language:hover>a, .wpml-ls-statics-footer .wpml-ls-current-language>a:focus {color:#000000;background-color:#eeeeee;} /*# sourceURL=wpml-legacy-horizontal-list-0-inline-css */ </style> <link rel='stylesheet' id='wpml-menu-item-0-css' href='https://www.saylamsuites.com/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/menu-item/style.min.css?ver=1' type='text/css' media='all' /> <script type="text/javascript" id="wpml-cookie-js-extra"> /* <![CDATA[ */ var wpml_cookies = {"wp-wpml_current_language":{"value":"tr","expires":1,"path":"/"}}; var wpml_cookies = {"wp-wpml_current_language":{"value":"tr","expires":1,"path":"/"}}; var wpml_cookies = {"wp-wpml_current_language":{"value":"tr","expires":1,"path":"/"}}; var wpml_cookies = {"wp-wpml_current_language":{"value":"tr","expires":1,"path":"/"}}; //# sourceURL=wpml-cookie-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.saylamsuites.com/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=475000" id="wpml-cookie-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://www.saylamsuites.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.saylamsuites.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://www.saylamsuites.com/wp-content/plugins/custom-site-logo/public/js/custom-site-logo-public.js?ver=1.0.0" id="custom-site-logo-js"></script> <script type="text/javascript" id="wpml-browser-redirect-js-extra"> /* <![CDATA[ */ var wpml_browser_redirect_params = {"pageLanguage":"tr","languageUrls":{"en_us":"https://www.saylamsuites.com/en/","en":"https://www.saylamsuites.com/en/","us":"https://www.saylamsuites.com/en/","tr_tr":"https://www.saylamsuites.com/","tr":"https://www.saylamsuites.com/"},"cookie":{"name":"_icl_visitor_lang_js","domain":"www.saylamsuites.com","path":"/","expiration":24}}; //# sourceURL=wpml-browser-redirect-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.saylamsuites.com/wp-content/plugins/sitepress-multilingual-cms/dist/js/browser-redirect/app.js?ver=475000" id="wpml-browser-redirect-js"></script> <!-- Site Kit tarafından eklenen Google etiketi (gtag.js) snippet'i --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-K5LWW8G" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["www.saylamsuites.com"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-K5LWW8G"); //# sourceURL=google_gtagjs-js-after /* ]]> */ </script> <!-- Site Kit tarafından eklenen Google etiketi (gtag.js) snippet'ini sonlandırın --> <link rel="https://api.w.org/" href="https://www.saylamsuites.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.saylamsuites.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9" /> <meta name="generator" content="Site Kit by Google 1.154.0" /><meta name="generator" content="WPML ver:4.7.5 stt:1,53;" /> <style>/* CSS added by WP Meta and Date Remover*/.wp-block-post-author__name{display:none !important;} .wp-block-post-date{display:none !important;} .entry-meta {display:none !important;} .home .entry-meta { display: none; } .entry-footer {display:none !important;} .home .entry-footer { display: none; }</style><meta name="generator" content="Elementor 3.29.2; features: e_font_icon_svg, additional_custom_breakpoints, e_local_google_fonts; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <script type="text/javascript" id="google_gtagjs" src="https://www.saylamsuites.com/?local_ga_js=10092791108fc5ad1f74b643b3546d99" async="async"></script> <script type="text/javascript" id="google_gtagjs-inline"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-ZTHG5T9QCD', {} ); /* ]]> */ </script> <link rel="icon" href="https://www.saylamsuites.com/wp-content/uploads/2024/04/cropped-saylam-favicon-mini-2-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.saylamsuites.com/wp-content/uploads/2024/04/cropped-saylam-favicon-mini-2-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.saylamsuites.com/wp-content/uploads/2024/04/cropped-saylam-favicon-mini-2-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.saylamsuites.com/wp-content/uploads/2024/04/cropped-saylam-favicon-mini-2-270x270.png" /> <style> #res-widget-form input[type="text"]{ width:78% !important; } </style> </head> <body class="error404 wp-custom-logo wp-theme-oceanica elementor-default elementor-kit-6"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header" role="banner"> <div class="wrapper"> <div class="header-bar clear"> </div>