golden hour
/home/doctorbruno/public_html/targetpg.in/wp-content/themes/genesis/lib/css
⬆️ Go Up
Upload
File/Folder
Size
Actions
admin-rtl.css
173 B
Del
OK
admin-rtl.min.css
640 B
Del
OK
admin.css
13.9 KB
Del
OK
admin.min.css
37.22 KB
Del
OK
fonts
-
Del
OK
load-styles.php
1.48 KB
Del
OK
Edit: load-styles.php
<?php /** * Genesis Framework. * * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. * Please do all modifications in the form of a child theme. * * @package Genesis\Assets * @author StudioPress * @license GPL-2.0-or-later * @link https://my.studiopress.com/themes/genesis/ */ add_action( 'genesis_meta', 'genesis_load_stylesheet' ); /** * Echo reference to the style sheet. * * If a child theme is active, it loads the child theme's stylesheet, otherwise, it loads the Genesis style sheet. * * @since 1.0.0 * * @see genesis_enqueue_main_stylesheet() Enqueue main style sheet. */ function genesis_load_stylesheet() { add_action( 'wp_enqueue_scripts', 'genesis_enqueue_main_stylesheet', 5 ); } /** * Enqueue main style sheet. * * Properly enqueue the main style sheet. * * @since 1.9.0 */ function genesis_enqueue_main_stylesheet() { wp_enqueue_style( genesis_get_theme_handle(), get_stylesheet_uri(), false, genesis_get_theme_version() ); } add_action( 'admin_print_styles', 'genesis_load_admin_styles' ); /** * Enqueue Genesis admin styles. * * @since 1.0.0 */ function genesis_load_admin_styles() { $suffix = genesis_is_in_dev_mode() ? '' : '.min'; wp_enqueue_style( 'genesis_admin_css', GENESIS_CSS_URL . "/admin{$suffix}.css", [], PARENT_THEME_VERSION ); if ( is_rtl() ) { wp_enqueue_style( 'genesis_admin_rtl_css', GENESIS_CSS_URL . "/admin-rtl{$suffix}.css", [], PARENT_THEME_VERSION ); } }
Save