Skip to content

Instantly share code, notes, and snippets.

@abelsaad
Created April 8, 2021 06:18
Show Gist options
  • Save abelsaad/81cef0a639f12ae44bedb0faf909fb14 to your computer and use it in GitHub Desktop.
Save abelsaad/81cef0a639f12ae44bedb0faf909fb14 to your computer and use it in GitHub Desktop.
// 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