Advertisement
GochiSiyan

Untitled

Dec 23rd, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_action('wp',function (){
  2. $dark_list=[
  3. 7,
  4. ];
  5. if (array_search(get_queried_object_id(),$dark_list) !== false) {
  6. add_action('jnews_after_body',function (){
  7. ?>
  8. <script>
  9. (function($){
  10. $(function(){
  11. $('.jeg_main').addClass('jnews-dark-mode')
  12. })
  13. })(jQuery)
  14. </script>
  15. <?php
  16. });
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement