Advertisement
arie_cristianD

disable darkmode on homepage

May 4th, 2025
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function remove_jeg_dark_mode_filter() {
  2.     if ( is_front_page() || is_home() ) {
  3.         remove_filter( 'body_class', 'jeg_dark_mode' );
  4.     }
  5. }
  6. add_action( 'wp_head', 'remove_jeg_dark_mode_filter', 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement