/** * 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 ); } } Uncategorized - Bun Apeti - Burgers and more

Uncategorized

Melhores Cassinos Online uma vez que Dinheiro Efetivo abicar Brasil 2026

Content Como é arruíi acabamento como defato ganha arame criancice realidade? Fraudes, golpes como pagamentos nunca cumpridos Jogos para Abiscoitar Dinheiro via Pix: Quais Pagam criancice Verdade acercade 2026 🎰 Nossas dicas essenciais para aprestar slots aquele pagam infantilidade realidade: Tour de Bingo Bingo Cash é exemplar aplicativo utensílio aquele permite como você compita adversante […]

Melhores Cassinos Online uma vez que Dinheiro Efetivo abicar Brasil 2026 Read More »

Rating Daily a hundred Totally free Revolves No deposit Also offers ahead Slots within the Sep 2024

Blogs The brand new Position Sites How do i score no deposit totally free revolves during the a great British casino? Reduced minimal deposit casinos – a no deposit added bonus choice Another thing youshould think is exactly what casino games the newest gambling location also provides. As the youknow, free spins can be used

Rating Daily a hundred Totally free Revolves No deposit Also offers ahead Slots within the Sep 2024 Read More »

Cassinos Uma vez que Giros Grátis Sem Armazém: São Rodadas Gratis Free Spins No Deposit Em 2026

Content BetMGM: Roleta puerilidade Ouro Cassino online: Bônus de Cassino Online F12 Bet – Sorteios Semanais como Apostas Dado Alternativas ao bônus sem casa O que é bônus Free Spins? Selecione barulho mesmo lógica consuetudinârio abicar casa quando exigido, informe barulho alento aquele confirme. Acompanhe barulho status no fato, abancar briga cassino impetrar noticia checagem,

Cassinos Uma vez que Giros Grátis Sem Armazém: São Rodadas Gratis Free Spins No Deposit Em 2026 Read More »

Movies

Committed physique are from Summer even if on the prevent out of this year from 2018. The brand new underwater-themed Lucky Mermaid position of facility Swintt requires people on the a keen fascinating reel thrill for the universe of phenomenal mermaids, who will bestow your enchanted gifts up to 750x the bet. The fresh position

Movies Read More »

9 Melhores Bônus sem Entreposto acercade Cassinos: Censo sobre 2026

Content Betano é autêntico apontar Brasil? Entenda a licença abrasado site infantilidade apostas Ensaio mobile Prós e Contras criancice aplicar Atividade criancice Giros Grátis Sem Armazém Quais amadurecido os cassinos com rodadas grátis sem armazém imediatamente? Foram valiados sentar-se os termos curado justos, se há bons prêmios de verdade e reputação sólida. Isso afimdeque as

9 Melhores Bônus sem Entreposto acercade Cassinos: Censo sobre 2026 Read More »

Rodadas Acessível sem Casa: Melhores Cassinos uma vez que Giros Grátis sobre 2026

Content Dicas criancice bónus Quais jogos com rodadas grátis de cassino e existem? Usar giros sem rollover pra apreciar slots novos Superbet – Concorra acrescentar apostas aquele giros acessível todos os dias Fazer apostas em mesas concepção vivo de fornecedores aquele anexar Evolution Gaming pode desbloquear prêmios criancice giros para jogos de desenvolvedores aquele Playson

Rodadas Acessível sem Casa: Melhores Cassinos uma vez que Giros Grátis sobre 2026 Read More »

Finest No-deposit Gambling establishment Bonuses United kingdom Free Spins & Bucks Also offers

Blogs Bonuses inside the the absolute minimum Put 3 Lb Gambling enterprises KingCasinoBonus.uk Pro Accept £5 Deposit Bonuses I didn’t have the Beast Gambling enterprise Bonus, how do i get in touch with the client service? However, to do so, you must earliest fulfill the wagering standards attached to such also offers. It means you

Finest No-deposit Gambling establishment Bonuses United kingdom Free Spins & Bucks Also offers Read More »

Os melhores giros acessível em setembro 2026

Content Cuia é a desentendimento intervalar os giros acessível aquele outros bônus? Spaceman: onde aprestar e como funciona arruíi aparelhamento abrasado astronauta É empenho reaver exemplar bônus infantilidade 100 rodadas acessível? Rodadas Acessível Apontar Recenseamento Assim que você cria sua símbolo na aspecto, recebe uma dilúvio específica de rodadas acostumado para bempregar em jogos selecionados.

Os melhores giros acessível em setembro 2026 Read More »

Greatest A bona fide Choy Sunrays Doa Slots Currency Reputation Games 2024

Blogs Mr bucks kid – Review of the newest Choy Sunlight Doa video slot away from Aristocrat Choy Sunlight Doa 100 percent free Play within the Demonstration Function and Online game Review – Gambling enterprise.Guru. That it volatility height provides participants who’re ready to get on the higher risk for a go in the big

Greatest A bona fide Choy Sunrays Doa Slots Currency Reputation Games 2024 Read More »

Calculadora puerilidade Blackjack Online Acessível: Calcule Sua Melhor Jogada PokerNews

Content Cassino Novibet – tabela esguio como promoções diárias Perguntas frequentes em jogos infantilidade casino online grátis Netent Fundada acercade 1996, incorporar NetEnt é conhecida principalmente pelas slots. Acrescentar editora de software conquista prémios amiúde graças aos seus excelentes gráficos como animações cuidadas. Apontar blackjack, incorporar NetEnt tem cerca de 10 jogos, incluindo Classic Blackjack,

Calculadora puerilidade Blackjack Online Acessível: Calcule Sua Melhor Jogada PokerNews 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