Advertisement
tex2005

Remove oxygen body classes

Feb 21st, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. add_action( 'body_class', 'remove_oxy_body_classes');
  2. function remove_oxy_body_classes( $classes ) {
  3. if (in_array('theme-oxygen-is-not-a-theme', $classes)) {
  4. unset( $classes[array_search('theme-oxygen-is-not-a-theme', $classes)] );
  5. }
  6. if (in_array('oxygen-body', $classes)) {
  7. unset( $classes[array_search('oxygen-body', $classes)] );
  8. }
  9. return $classes;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement