Viewing File: /home/maglabs/mascotte/wp-content/themes/splendour-child/functions.php
<?php
/**
* Child-Theme functions and definitions
*/
// Load rtl.css because it is not autoloaded from the child theme
if ( ! function_exists( 'splendour_child_load_rtl' ) ) {
add_filter( 'wp_enqueue_scripts', 'splendour_child_load_rtl', 3000 );
function splendour_child_load_rtl() {
if ( is_rtl() ) {
wp_enqueue_style( 'splendour-style-rtl', get_template_directory_uri() . '/rtl.css' );
}
}
}
?>
Back to Directory
File Manager