/** * Theme functions and definitions * * @package HelloElementor */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'HELLO_ELEMENTOR_VERSION', '3.4.4' ); define( 'EHP_THEME_SLUG', 'hello-elementor' ); define( 'HELLO_THEME_PATH', get_template_directory() ); define( 'HELLO_THEME_URL', get_template_directory_uri() ); define( 'HELLO_THEME_ASSETS_PATH', HELLO_THEME_PATH . '/assets/' ); define( 'HELLO_THEME_ASSETS_URL', HELLO_THEME_URL . '/assets/' ); define( 'HELLO_THEME_SCRIPTS_PATH', HELLO_THEME_ASSETS_PATH . 'js/' ); define( 'HELLO_THEME_SCRIPTS_URL', HELLO_THEME_ASSETS_URL . 'js/' ); define( 'HELLO_THEME_STYLE_PATH', HELLO_THEME_ASSETS_PATH . 'css/' ); define( 'HELLO_THEME_STYLE_URL', HELLO_THEME_ASSETS_URL . 'css/' ); define( 'HELLO_THEME_IMAGES_PATH', HELLO_THEME_ASSETS_PATH . 'images/' ); define( 'HELLO_THEME_IMAGES_URL', HELLO_THEME_ASSETS_URL . 'images/' ); if ( ! isset( $content_width ) ) { $content_width = 800; // Pixels. } if ( ! function_exists( 'hello_elementor_setup' ) ) { /** * Set up theme support. * * @return void */ function hello_elementor_setup() { if ( is_admin() ) { hello_maybe_update_theme_version_in_db(); } if ( apply_filters( 'hello_elementor_register_menus', true ) ) { register_nav_menus( [ 'menu-1' => esc_html__( 'Header', 'hello-elementor' ) ] ); register_nav_menus( [ 'menu-2' => esc_html__( 'Footer', 'hello-elementor' ) ] ); } if ( apply_filters( 'hello_elementor_post_type_support', true ) ) { add_post_type_support( 'page', 'excerpt' ); } if ( apply_filters( 'hello_elementor_add_theme_support', true ) ) { add_theme_support( 'post-thumbnails' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', 'navigation-widgets', ] ); add_theme_support( 'custom-logo', [ 'height' => 100, 'width' => 350, 'flex-height' => true, 'flex-width' => true, ] ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); /* * Editor Styles */ add_theme_support( 'editor-styles' ); add_editor_style( 'editor-styles.css' ); /* * WooCommerce. */ if ( apply_filters( 'hello_elementor_add_woocommerce_support', true ) ) { // WooCommerce in general. add_theme_support( 'woocommerce' ); // Enabling WooCommerce product gallery features (are off by default since WC 3.0.0). // zoom. add_theme_support( 'wc-product-gallery-zoom' ); // lightbox. add_theme_support( 'wc-product-gallery-lightbox' ); // swipe. add_theme_support( 'wc-product-gallery-slider' ); } } } } add_action( 'after_setup_theme', 'hello_elementor_setup' ); function hello_maybe_update_theme_version_in_db() { $theme_version_option_name = 'hello_theme_version'; // The theme version saved in the database. $hello_theme_db_version = get_option( $theme_version_option_name ); // If the 'hello_theme_version' option does not exist in the DB, or the version needs to be updated, do the update. if ( ! $hello_theme_db_version || version_compare( $hello_theme_db_version, HELLO_ELEMENTOR_VERSION, '<' ) ) { update_option( $theme_version_option_name, HELLO_ELEMENTOR_VERSION ); } } if ( ! function_exists( 'hello_elementor_display_header_footer' ) ) { /** * Check whether to display header footer. * * @return bool */ function hello_elementor_display_header_footer() { $hello_elementor_header_footer = true; return apply_filters( 'hello_elementor_header_footer', $hello_elementor_header_footer ); } } if ( ! function_exists( 'hello_elementor_scripts_styles' ) ) { /** * Theme Scripts & Styles. * * @return void */ function hello_elementor_scripts_styles() { if ( apply_filters( 'hello_elementor_enqueue_style', true ) ) { wp_enqueue_style( 'hello-elementor', HELLO_THEME_STYLE_URL . 'reset.css', [], HELLO_ELEMENTOR_VERSION ); } if ( apply_filters( 'hello_elementor_enqueue_theme_style', true ) ) { wp_enqueue_style( 'hello-elementor-theme-style', HELLO_THEME_STYLE_URL . 'theme.css', [], HELLO_ELEMENTOR_VERSION ); } if ( hello_elementor_display_header_footer() ) { wp_enqueue_style( 'hello-elementor-header-footer', HELLO_THEME_STYLE_URL . 'header-footer.css', [], HELLO_ELEMENTOR_VERSION ); } } } add_action( 'wp_enqueue_scripts', 'hello_elementor_scripts_styles' ); if ( ! function_exists( 'hello_elementor_register_elementor_locations' ) ) { /** * Register Elementor Locations. * * @param ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $elementor_theme_manager theme manager. * * @return void */ function hello_elementor_register_elementor_locations( $elementor_theme_manager ) { if ( apply_filters( 'hello_elementor_register_elementor_locations', true ) ) { $elementor_theme_manager->register_all_core_location(); } } } add_action( 'elementor/theme/register_locations', 'hello_elementor_register_elementor_locations' ); if ( ! function_exists( 'hello_elementor_content_width' ) ) { /** * Set default content width. * * @return void */ function hello_elementor_content_width() { $GLOBALS['content_width'] = apply_filters( 'hello_elementor_content_width', 800 ); } } add_action( 'after_setup_theme', 'hello_elementor_content_width', 0 ); if ( ! function_exists( 'hello_elementor_add_description_meta_tag' ) ) { /** * Add description meta tag with excerpt text. * * @return void */ function hello_elementor_add_description_meta_tag() { if ( ! apply_filters( 'hello_elementor_description_meta_tag', true ) ) { return; } if ( ! is_singular() ) { return; } $post = get_queried_object(); if ( empty( $post->post_excerpt ) ) { return; } echo '' . "\n"; } } add_action( 'wp_head', 'hello_elementor_add_description_meta_tag' ); // Settings page require get_template_directory() . '/includes/settings-functions.php'; // Header & footer styling option, inside Elementor require get_template_directory() . '/includes/elementor-functions.php'; if ( ! function_exists( 'hello_elementor_customizer' ) ) { // Customizer controls function hello_elementor_customizer() { if ( ! is_customize_preview() ) { return; } if ( ! hello_elementor_display_header_footer() ) { return; } require get_template_directory() . '/includes/customizer-functions.php'; } } add_action( 'init', 'hello_elementor_customizer' ); if ( ! function_exists( 'hello_elementor_check_hide_title' ) ) { /** * Check whether to display the page title. * * @param bool $val default value. * * @return bool */ function hello_elementor_check_hide_title( $val ) { if ( defined( 'ELEMENTOR_VERSION' ) ) { $current_doc = Elementor\Plugin::instance()->documents->get( get_the_ID() ); if ( $current_doc && 'yes' === $current_doc->get_settings( 'hide_title' ) ) { $val = false; } } return $val; } } add_filter( 'hello_elementor_page_title', 'hello_elementor_check_hide_title' ); /** * BC: * In v2.7.0 the theme removed the `hello_elementor_body_open()` from `header.php` replacing it with `wp_body_open()`. * The following code prevents fatal errors in child themes that still use this function. */ if ( ! function_exists( 'hello_elementor_body_open' ) ) { function hello_elementor_body_open() { wp_body_open(); } } require HELLO_THEME_PATH . '/theme.php'; HelloTheme\Theme::instance(); It�s set-to get to be the earliest resorts hotel and you may local casino within the Kern State - Yayasan Lentera Jagad Nusantara Sejahtera

It�s set-to get to be the earliest resorts hotel and you may local casino within the Kern State

And it is doing ten full minutes regarding the newest location

Even though twenty-five moments southern away from Bakersfield, Damian told you the resort & local casino are only the beginning of what to have one area. �We’re going to end up being starting plenty of efforts because of the new funding of the tribe and local casino, the difficult Stone brand, it will create on 5,000 the new operate,� said Damian. For the December, the new shovels smack the dirt, and you will framework having Kern County’s earliest hotel resort and you will gambling enterprise is actually started with work are available to anyone. Enjoy a fun and relaxing retreat at our very own lodge and you may local casino. Stage a couple is anticipated becoming a different 20 days and will finish the whole resort and you will casino.

The newest casino’s popularity turned into immediately visible as the folks flocked on the the newest gaming destination. “It�s among the items that helps make so it opportunity so unique. We anticipate more 2 billion individuals per year,” Kelley told you. “What exactly i will be viewing having are an accumulation away from travelers, since we don’t wanted website visitors https://vindercasino-dk.eu.com/ building backup so you can where it would be impacting the brand new highway. All exits could be discover at this time but if we do have to shut one thing off and you will divert people, we shall do so dependent on visitors.” said Williams Adventure to the the latest gambling establishment try bursting – but CHP warns the fresh huge starting may trigger huge site visitors spikes. The region now offers easy accessibility having people of each other Southern area Ca as well as the Central Valley. Hard-rock Gambling establishment Tejon are less than 15 kilometers southern out of Bakersfield.

The local discount will also be helped, courtesy of an anticipated influx regarding folks

Regional providers frontrunners provides called the project a great �local tourism point� expected to mark people of La, Bakersfield, Fresno and you may beyond. The hotel is located close Path 99 and you may State Station 166, on the 15 miles southern off Bakersfield. The fresh new November starting comes nearly a couple of years following casino’s pioneering. Nestled on the bottom of your own historic Grapevine Slope Pass within the latest southernmost tip of your San Joaquin Valley, the new 150K-square-legs gambling enterprise to your Tejon Indian land gives more 2,000 slots and you will 50 real time-broker table video game.

The fresh new local casino was a social heart regarding manner, that have situations and you will applications so you’re able to enjoy the newest life of Tejon Indian Tribe and present people the opportunity to apply to their culture. All of this is set so individuals be it commonly inside the a gambling establishment but they are engrossed for the a resorts ecosystem. Another $600-million casino, the difficult Material Gambling establishment Tejon, is determined to open the following month during the California, and it’s really creating to be larger and higher than just of many of the Vegas competitors. Nestled at the base of the historical Grapevine Mountain Pass from the the brand new southernmost suggestion of the San Joaquin Area, the newest property is poised so you’re able to suffice each other South Ca and Central Area areas. The newest enjoyment attraction is situated below 15 kilometers southern area out of Bakersfield towards Tejon Indian Tribal house, is the to begin its type within the Kern Condition and you may good landent on the area.

The new location it’s looking at is on the fresh new northern front side of your town near Meadows Community Airport. The newest Golden Western Local casino is southern off the downtown area Bakersfield, in which it is complete organization for nearly three decades. Kristin Blankenship, a citizen, indicated optimism regarding possibility of improved cash, efforts, and you will tourism, even if she detailed issues about guests. Established in place of taxpayer currency, the latest gambling enterprise is anticipated to draw people on Central Valley and you may beyond, broadening local spending and you may creating operate. The original stage usually incorporate a roughly 150,000-square-legs casino offering 12,000 slots, 48 desk online game, and you can numerous food and refreshment sites including the distinguished hard-rock cafe.

The new gambling establishment rankings depend on the complete amount of slot hosts, table video game, and you will rectangular footage. Extending across the Central Valley and you can for the foothill organizations, the new region’s tribal gambling enterprises suffice an over-all invitees foot from Fresno, Bakersfield, Visalia, and you may related portion. The new celebration appeared a commemorative spade groundbreaking that have Hard rock agents, Tejon Indian Tribe frontrunners and standard subscription and statewide and you will local society frontrunners. The difficult Rock threatens to fully capture all site visitors heading for the Bakersfield.

Dependent toward the base of the Grapevine Mountain Pass, the spot is so you’re able to serve one another Southern Ca and you can Central Area areas, is the following-nearest full local casino so you’re able to La. Your panels was first launched for the . CHP Fort Tejon told you Thursday that eastbound Street 166 out of Interstate 5 could be closed in order to website visitors and also be diverted so you can the brand new David Copus Rd. off-ramp. The latest California Highway Patrol are letting vehicle operators learn to set up having big traffic.

The newest tribal land is decided on the bottom of the historic Tejon Pass also known as the fresh �Grapevine� along We-5 on the south San Joaquin Valley. It�s are established fifteen kilometers southern of Bakersfield to the property you to definitely is one of the Tejon Indian Tribe.