first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) exit;
if ( !function_exists( 'solarify_child_enqueue_styles' ) ):
function solarify_child_enqueue_styles() {
$parent_style = 'solarify-css-style';
wp_enqueue_style( $parent_style, get_parent_theme_file_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_theme_file_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
endif;
add_action( 'wp_enqueue_scripts', 'solarify_child_enqueue_styles' );