Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('wp',function (){
- $dark_list=[
- 7,
- ];
- if (array_search(get_queried_object_id(),$dark_list) !== false) {
- add_action('jnews_after_body',function (){
- ?>
- <script>
- (function($){
- $(function(){
- $('.jeg_main').addClass('jnews-dark-mode')
- })
- })(jQuery)
- </script>
- <?php
- });
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement