Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Last active November 1, 2021 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thecodepoetry/1a13e5cf2177a2fa456a7b39accb8fb8 to your computer and use it in GitHub Desktop.
Save thecodepoetry/1a13e5cf2177a2fa456a7b39accb8fb8 to your computer and use it in GitHub Desktop.
RTL Child theme
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