Skip to content

Instantly share code, notes, and snippets.

@wolfthemes
Last active December 11, 2018 17:01
Show Gist options
  • Select an option

  • Save wolfthemes/5d9bea840564afef5565960b820e888a to your computer and use it in GitHub Desktop.

Select an option

Save wolfthemes/5d9bea840564afef5565960b820e888a to your computer and use it in GitHub Desktop.
/**
* Enqueue RTL CSS stylesheet
*/
function enqueue_rtl_styles() {
// Dequeue main CSS file
wp_dequeue_style( 'theme-style' ); // replace "theme" by your the theme slug
wp_deregister_style( 'theme-style' ); // replace "theme" by your the theme slug
// Enqueue auto-generated rtl CSS file
wp_enqueue_style( 'rtl', get_template_directory_uri() . '/rtl.css' );
}
add_action( 'enqueue_rtl_styles', 'theme_enqueue_styles', 999 ); // replace "theme" by your the theme slug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment