📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 07:06:06
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
consua-child
✏️
Editing: functions.php
<?php /** * * @Packge Consua * @Author validthemes * @Author URL https://themeforest.net/user/validthemes/portfolio * @version 1.0.0 * */ /** * Enqueue style of child theme */ if (!function_exists('consua_child_theme_cfg_parent')) : function consua_child_theme_cfg_parent() { $parent_style = 'consua-parent-style'; wp_enqueue_style($parent_style, get_parent_theme_file_uri("/style.css")); wp_enqueue_style( "consua-child-style", get_stylesheet_directory_uri() . '/style.css', array($parent_style), wp_get_theme()->get('Version') ); } endif; add_action('wp_enqueue_scripts', 'consua_child_theme_cfg_parent');
💾 Save Changes
❌ Cancel