/** * Travellable functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Travellable */ if ( ! defined( 'TRAVELLABLE_VERSION' ) ) { // Replace the version number of the theme on each release. define( 'TRAVELLABLE_VERSION', '1.0.9' ); } if ( ! function_exists( 'travellable_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 travellable_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Travellable, use a find and replace * to change 'travellable' to the name of your theme in all the template files. */ load_theme_textdomain( 'travellable', 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' ); add_theme_support( 'register_block_pattern' ); add_theme_support( 'register_block_style' ); add_theme_support( 'wp-block-styles' ); /* * 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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'travellable' ), 'social' => esc_html__( 'Social', 'travellable' ), ) ); /* * 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', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'travellable_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); /** * Add theme support for gutenberg block. */ add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); } endif; add_action( 'after_setup_theme', 'travellable_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function travellable_content_width() { $GLOBALS['content_width'] = apply_filters( 'travellable_content_width', 640 ); } add_action( 'after_setup_theme', 'travellable_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function travellable_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'travellable' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'travellable' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); // Regsiter 4 footer widgets. for ( $i = 1; $i <= 4; $i++ ) { register_sidebar( array( 'name' => esc_html__( 'Footer Widget ', 'travellable' ) . $i, 'id' => 'footer-widget-' . $i, 'description' => esc_html__( 'Add widgets here.', 'travellable' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h6 class="widget-title">', 'after_title' => '</h6>', ) ); } } add_action( 'widgets_init', 'travellable_widgets_init' ); /** * Enqueue scripts and styles. */ function travellable_scripts() { // Append .min if SCRIPT_DEBUG is false. $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Slick. wp_enqueue_style( 'travellable-slick', get_template_directory_uri() . '/assets/css/slick' . $min . '.css', array(), TRAVELLABLE_VERSION ); wp_enqueue_style( 'travellable-slick-theme', get_template_directory_uri() . '/assets/css/slick-theme' . $min . '.css', array(), TRAVELLABLE_VERSION ); // Bootstrap. wp_enqueue_style( 'travellable-bootstrap-style', get_template_directory_uri() . '/assets/css/bootstrap' . $min . '.css', array(), TRAVELLABLE_VERSION ); wp_enqueue_style( 'travellable-bootstrap-icon-style', get_template_directory_uri() . '/assets/css/bootstrap-icons' . $min . '.css', array(), TRAVELLABLE_VERSION ); // Google fonts. wp_enqueue_style( 'travellable-google-fonts', wptt_get_webfont_url( travellable_get_fonts_url() ), array(), null ); // Main style. wp_enqueue_style( 'travellable-style', get_stylesheet_uri(), array(), TRAVELLABLE_VERSION ); // Navigation script. wp_enqueue_script( 'travellable-navigation', get_template_directory_uri() . '/assets/js/navigation' . $min . '.js', array(), TRAVELLABLE_VERSION, true ); // Bootstrap script. wp_enqueue_script( 'travellable-bootstrap', get_template_directory_uri() . '/assets/js/bootstrap' . $min . '.js', array( 'jquery' ), TRAVELLABLE_VERSION, true ); // Slick script. wp_enqueue_script( 'travellable-slick', get_template_directory_uri() . '/assets/js/slick' . $min . '.js', array( 'jquery' ), TRAVELLABLE_VERSION, true ); // Custom script. wp_enqueue_script( 'travellable-custom', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array( 'jquery' ), TRAVELLABLE_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'travellable_scripts' ); /** * Include wptt webfont loader. */ require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Google Fonts */ require get_template_directory() . '/inc/google-fonts.php'; /** * Dynamic CSS */ require get_template_directory() . '/inc/dynamic-css.php'; /** * Breadcrumb */ require get_template_directory() . '/inc/class-breadcrumb-trail.php'; /** * Recommended Plugins */ require get_template_directory() . '/inc/tgmpa/recommended-plugins.php'; /** * One Click Demo Import after import setup. */ require get_template_directory() . '/inc/ocdi.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } <!doctype html> <html lang="en-US" prefix="og: http://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="profile" href="https://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <!-- This site is optimized with the Yoast WordPress SEO plugin v1.5.4.2 - https://yoast.com/wordpress/plugins/seo/ --> <link rel="canonical" href="https://tectonikedezn.com" /> <link rel="next" href="https://tectonikedezn.com/page/2/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="tectonikedezn -" /> <meta property="og:url" content="https://tectonikedezn.com" /> <meta property="og:site_name" content="tectonikedezn" /> <!-- / Yoast WordPress SEO plugin. --> <style id="wp-img-auto-sizes-contain-inline-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"> 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"> :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)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .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{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.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-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-includes/css/dist/block-library/common.min.css */ </style> <style id="classic-theme-styles-inline-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> <script id="jquery-core-js" src="https://tectonikedezn.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> <script id="jquery-migrate-js" src="https://tectonikedezn.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> <script id="wcf_front.js-js" src="https://tectonikedezn.com/wp-content/plugins/wp-fast-start/modules/js/front.js?ver=1.0"></script> <link rel="https://api.w.org/" href="https://tectonikedezn.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://tectonikedezn.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 7.0.1" /> <style id="wp-custom-css"> .copyright{ display:none; } </style> </head> <body class="home blog wp-theme-travellable"> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#primary">Skip to content</a> <header id="masthead" class="site-header"> <div class="header-top"> <div class="container"> <div class="header-top-left"> </div> <!-- .header-top-left --> <div class="header-top-right"> <div class="top-links"> <a class="top-links__default" href="#" id="header-search-toggler"> <em class="bi bi-search"></em> </a> <div class="header-search-wrapper" id="header-search"> <form role="search" method="get" id="searchform" class="searchform" action="https://tectonikedezn.com/"> <div> <label class="screen-reader-text" for="s">Search for:</label> <input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="Search" /> </div> </form> </div> </div> </div> <!-- .header-top-right --> </div> <!-- .header-top --> </div> <div class="header-bottom"> <div class="container"> <div class="site-branding"> <div class="site-logo"> </div> <div class="site-identity"> <h1 class="site-title"><a href="https://tectonikedezn.com/" rel="home">tectonikedezn</a></h1> </div> </div><!-- .site-branding --> <nav id="site-navigation" class="main-navigation"> <button id="nav-icon" class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"> <span></span> <span></span> <span></span> <span></span> </button> <div class="main-menu"> <div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-13" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-13"><a href="https://tectonikedezn.com/">Home</a></li> <li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14"><a href="https://tectonikedezn.com/about/">About</a></li> <li id="menu-item-15" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15"><a href="https://tectonikedezn.com/contact/">Contact</a></li> <li id="menu-item-16" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16"><a href="https://tectonikedezn.com/privacy-policy-2/">Privacy Policy</a></li> </ul></div> </div> </nav><!-- #site-navigation --> </div> </div> </header><!-- #masthead --> <div id="content" class="site-content"> <div class="container"> <div class="row">