Last active
November 1, 2021 13:50
-
-
Save thecodepoetry/1a13e5cf2177a2fa456a7b39accb8fb8 to your computer and use it in GitHub Desktop.
RTL Child theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( is_rtl() ) { | |
add_action( | |
'wp_enqueue_scripts', | |
function () { | |
wp_enqueue_style( 'the7-parent-rtl', trailingslashit( get_template_directory_uri() ) . 'rtl.css' ); | |
}, | |
10 | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment