<?php
/**
* Child-Theme functions and definitions
*/
// Load rtl.css because it is not autoloaded from the child theme
if ( ! function_exists( 'floria_child_load_rtl' ) ) {
add_filter( 'wp_enqueue_scripts', 'floria_child_load_rtl', 3000 );
function floria_child_load_rtl() {
if ( is_rtl() ) {
wp_enqueue_style( 'floria-style-rtl', get_template_directory_uri() . '/rtl.css' );
}
}
}
?> Back to Directory