Created
April 8, 2021 06:18
-
-
Save abelsaad/81cef0a639f12ae44bedb0faf909fb14 to your computer and use it in GitHub Desktop.
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
// RTL Support | |
function enqueue_theme_files() { | |
wp_enqueue_style( 'themeslug-style', get_stylesheet_uri() ); | |
wp_style_add_data( 'themeslug-style', 'rtl', 'replace' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'enqueue_theme_files' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment