| Server IP : 198.38.94.67 / Your IP : 216.73.217.74 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/royalopus.ae/wp-content/themes/wpresidence-child/ |
Upload File : |
<?php
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) exit;
if ( !function_exists( 'wpestate_chld_thm_cfg_parent_css' ) ):
function wpestate_chld_thm_cfg_parent_css() {
$parent_style = 'wpestate_style';
$use_mimify = wpresidence_get_option('wp_estate_use_mimify','');
$mimify_prefix = '';
if($use_mimify==='yes'){
$mimify_prefix = '.min';
}
if($mimify_prefix===''){
wp_enqueue_style($parent_style,get_template_directory_uri().'/style.css', '', '1.0', 'all');
}else{
wp_enqueue_style($parent_style,get_template_directory_uri().'/style.min.css', '', '1.0', 'all');
}
if ( is_rtl() ) {
wp_enqueue_style( 'chld_thm_cfg_parent-rtl', trailingslashit( get_template_directory_uri() ). '/rtl.css' );
}
wp_enqueue_style( 'wpestate-child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
endif;
add_action('after_setup_theme', function() {
$domain = 'wpresidence';
$locale = get_locale();
// 1. Load parent theme translations from WP language directory
load_theme_textdomain($domain, WP_LANG_DIR . '/themes');
// 2. Load child theme translations
load_child_theme_textdomain($domain, WP_LANG_DIR . '/themes');
// 3. Fallback to child theme languages directory
$child_mofile = get_stylesheet_directory() . "/languages/{$locale}.mo";
if (file_exists($child_mofile)) {
load_textdomain($domain, $child_mofile);
}
});
add_action( 'wp_enqueue_scripts', 'wpestate_chld_thm_cfg_parent_css' );