/** * Starter Content Compatibility. * * @since 4.0.0 * @package Astra */ /** * Class Astre_Starter_Content */ class Astra_Starter_Content { public const HOME_SLUG = 'home'; public const ABOUT_SLUG = '#about'; public const SERVICES_SLUG = '#services'; public const REVIEWS_SLUG = '#reviews'; public const WHY_US_SLUG = '#whyus'; public const CONTACT_SLUG = '#contact'; /** * Constructor */ public function __construct() { $is_fresh_site = get_option( 'fresh_site' ); if ( ! $is_fresh_site ) { return; } // Adding post meta and inserting post. add_action( 'wp_insert_post', array( $this, 'register_listener', ), 3, 99 ); // Save astra settings into database. add_action( 'customize_save_after', array( $this, 'save_astra_settings', ), 10, 3 ); if ( ! is_customize_preview() ) { return; } // preview customizer values. add_filter( 'default_post_metadata', array( $this, 'starter_meta' ), 99, 3 ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_filter( 'astra_global_color_palette', array( $this, 'theme_color_palettes_defaults' ) ); } /** * Load default starter meta. * * @since 4.0.2 * @param mixed $value Value. * @param int $post_id Post id. * @param string $meta_key Meta key. * * @return string Meta value. */ public function starter_meta( $value, $post_id, $meta_key ) { if ( get_post_type( $post_id ) !== 'page' ) { return $value; } if ( 'site-content-layout' === $meta_key ) { return 'plain-container'; } if ( 'theme-transparent-header-meta' === $meta_key ) { return 'enabled'; } if ( 'site-sidebar-layout' === $meta_key ) { return 'no-sidebar'; } if ( 'site-post-title' === $meta_key ) { return 'disabled'; } return $value; } /** * Register listener to insert post. * * @since 4.0.0 * @param int $post_ID Post Id. * @param \WP_Post $post Post object. * @param bool $update Is update. */ public function register_listener( $post_ID, $post, $update ) { if ( $update ) { return; } $custom_draft_post_name = get_post_meta( $post_ID, '_customize_draft_post_name', true ); $is_from_starter_content = ! empty( $custom_draft_post_name ); if ( ! $is_from_starter_content ) { return; } if ( 'page' === $post->post_type ) { update_post_meta( $post_ID, 'site-content-layout', 'plain-container' ); update_post_meta( $post_ID, 'theme-transparent-header-meta', 'enabled' ); update_post_meta( $post_ID, 'site-sidebar-layout', 'no-sidebar' ); update_post_meta( $post_ID, 'site-post-title', 'disabled' ); } } /** * Get customizer json * * @since 4.0.0 * @return mixed value. */ public function get_customizer_json() { try { $request = wp_remote_get( ASTRA_THEME_URI . 'inc/compatibility/starter-content/astra-settings-export.json' ); } catch ( Exception $ex ) { $request = null; } if ( is_wp_error( $request ) ) { return false; // Bail early. } // @codingStandardsIgnoreStart /** * @psalm-suppress PossiblyNullReference * @psalm-suppress UndefinedMethod * @psalm-suppress PossiblyNullArrayAccess * @psalm-suppress PossiblyNullArgument * @psalm-suppress InvalidScalarArgument */ return json_decode( $request['body'], 1 ); // @codingStandardsIgnoreEnd } /** * Save Astra customizer settings into database. * * @since 4.0.0 */ public function save_astra_settings() { $settings = self::get_customizer_json(); // Delete existing dynamic CSS cache. delete_option( 'astra-settings' ); if ( ! empty( $settings['customizer-settings'] ) ) { foreach ( $settings['customizer-settings'] as $option => $value ) { update_option( $option, $value ); } } } /** * Load default astra settings. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-settings']; } return $json ? $json : $defaults; } /** * Load default color palettes. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_color_palettes_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-color-palettes']; } return $json ? $json : $defaults; } /** * Return starter content definition. * * @return mixed|void * @since 4.0.0 */ public function get() { $nav_items_header = array( 'home' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{' . self::HOME_SLUG . '}}', ), 'about' => array( 'title' => __( 'Services', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::SERVICES_SLUG . '}}', ), 'services' => array( 'title' => __( 'About', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::ABOUT_SLUG . '}}', ), 'reviews' => array( 'title' => __( 'Reviews', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::REVIEWS_SLUG . '}}', ), 'faq' => array( 'title' => __( 'Why Us', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::WHY_US_SLUG . '}}', ), 'contact' => array( 'title' => __( 'Contact', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::CONTACT_SLUG . '}}', ), ); $content = array( 'attachments' => array( 'logo' => array( 'post_title' => _x( 'Logo', 'Theme starter content', 'astra' ), 'file' => 'inc/assets/images/starter-content/logo.png', ), ), 'theme_mods' => array( 'custom_logo' => '{{logo}}', ), 'nav_menus' => array( 'primary' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), 'mobile_menu' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), ), 'options' => array( 'page_on_front' => '{{' . self::HOME_SLUG . '}}', 'show_on_front' => 'page', ), 'posts' => array( self::HOME_SLUG => require ASTRA_THEME_DIR . 'inc/compatibility/starter-content/home.php', // PHPCS:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound ), ); return apply_filters( 'astra_starter_content', $content ); } } Bun Apeti - Burgers and more - Page 1224 of 1788 - Something out of the Box

Echte casinobeleving bij Blazingwildz Casino voor deelnemers uit Nederland

Bij Blazingwildz Casino hebben we een plek ontdekt waar de spanning van een authentiek casino combineert met de dynamische energie van Nederland. Samen kunnen we profiteren van een divers aanbod aan boeiende tafelspellen die de essentie van een werkelijke casino-sfeer perfect weergeven. Met aantrekkelijke aanbiedingen en beloningen die op ons wachten, begint het avontuur pas […]

Echte casinobeleving bij Blazingwildz Casino voor deelnemers uit Nederland Read More »

Why Yep Casino Email Promotions Actually Matter UK Player Opinion

When we consider our gaming experiences at Yep Casino, email promotions play an crucial role in shaping our choices. These customized offers aren’t just random perks; they provide valuable insights and bonuses that align with our individual preferences. Let’s explore how these promotions not only boost our bankrolls but also foster a sense of connection

Why Yep Casino Email Promotions Actually Matter UK Player Opinion Read More »

Simplest Way to Commence Playing Slot Games at Betonred Casino for UK

Starting our journey with slots at Betonred Casino can be quite easy for us in the UK. First, we needed to set up an account by completing some essential details. After that, a prompt verification process guarantees everything’s configured right. But, the real fun begins when we explore the remarkable array of gaming options available.

Simplest Way to Commence Playing Slot Games at Betonred Casino for UK Read More »

Fridayroll Casino – Wahren Sie die Steuerung und genießen Sie jeden Augenblick in Deutschland

Im Fridayroll Casino erwartet Sie ein spannendes Spielerlebnis, das Spaß und Verantwortung in idealer Harmonie vereint. Dank unseres Engagements für bewusstes Gambling sind Ihnen essenzielle Werkzeuge zur Verfügung, mit denen Sie Ihr Spielverhalten kontrollieren können. Es geht nicht nur um die Spiele selbst, sondern darum, die Steuerung zu behalten. Was zeichnet dieses Casino in Deutschland

Fridayroll Casino – Wahren Sie die Steuerung und genießen Sie jeden Augenblick in Deutschland Read More »

I Observed SlotDJ Casino Promotional Calendar for Quarter Results for UK

We’ve been carefully tracking the SlotDJ Casino marketing calendar for the latest quarter in the UK, and the results are telling. The marketing strategies employed have not only attracted new players but also boosted loyalty among current ones. With the rise in player engagement, it’s apparent there’s more at play here. Let’s investigate some key

I Observed SlotDJ Casino Promotional Calendar for Quarter Results for UK Read More »

Allt du måste veta innan du börjar spela på Yep Casino i Sverige

När vi utforskar allt vi behöver veta innan vi spelar på Yep Casino i Sverige är det avgörande att börja med deras tillstånd och regleringar. Detta säkerställer en säker spelupplevelse, men det är bara början. Vi kommer också att granska spelutbudet, kampanjer, betalningsmetoder och åtgärder för ansvarsfullt spelande. Varje aspekt har en viktig roll i

Allt du måste veta innan du börjar spela på Yep Casino i Sverige Read More »

Fingertips Malina Casinon tarina seuraa pelikertoja Suomessa

Malina Casinolla me olemme omin silmin nähneet, miten pelikertojen seuraaminen voi muuttaa online-pelaamisen maisemaa Suomessa. Kyse ei ole vain pelaamisesta, vaan tapojemme ymmärtämisestä ja informoitujen valintojen tekemisestä. Hyödyntämällä uusia teknologioita mahdollistamme itsellemme nauttia tasapainoisesta pelikokemuksesta. Mutta mitä tämä oikeasti tarkoittaa meidän pelaajina? Tutkitaanpa tämän käytännön vivahteita ja sitä, miten se vaikuttaa pelikokemukseemme. Pelaajakunnan sitoutumisen seurannan

Fingertips Malina Casinon tarina seuraa pelikertoja Suomessa Read More »

Boomerang Casino – Trusted Certified and Lawful in UK

When we evaluate online gaming options, Boomerang Casino is notable as a trusted and authorized platform functioning within the UK. It’s crucial for us to understand the actions they’ve put in place to guarantee a safe and enjoyable journey. From their regulation adherence to the variety of games provided, there’s much to uncover. Let’s explore

Boomerang Casino – Trusted Certified and Lawful in UK Read More »

Betrepublic Casino – Hauptspiele für Deutschland

Im Betrepublic Casino begrüßt Sie eine vielfältige Auswahl an Spielen für jeden Geschmack. Von traditionellen Tischspielen bis hin zu packenden Spielautomaten ist für jeden etwas dabei. Besonders schätzen wir das Live-Erlebnis mit erfahrenen Dealern, das für ein authentisches und mitreißendes Spielerlebnis sorgt. Doch das ist erst der Anfang. Entdecken Sie einzigartige Features und spannende Optionen.

Betrepublic Casino – Hauptspiele für Deutschland Read More »

Mijn persoonlijke ervaring met het scrollgedrag van Lucky Block Casino in Nederland.

Onze ervaring met het navigatiegedrag van Lucky Block Casino in Nederland was zeer verhelderend. De interface is ontworpen voor vlotte navigatie, waardoor we moeiteloos tussen spellen en functies kunnen schakelen. We ontdekten dat dit de engagement verhoogt en de focus handhaaft, wat cruciaal is voor een aangename speelsessie. Er zijn echter fijnheden en vergelijkingen om

Mijn persoonlijke ervaring met het scrollgedrag van Lucky Block Casino in Nederland. Read More »

/** * Template part for displaying the footer info. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ ?>
Scroll to Top