Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Add Dark Mode to Spesific Page */
- function add_dark_mode_for_spesific_page() {
- $list = array(
- 'http://localhost/wordpress2/2021/03/17/hello-world/',
- 'https://localhost/wordpress2/2021/02/15/the-legend-of-zelda-breath-of-the-wild-gameplay-on-the-nintendo-switch/'
- );
- if ( in_array( get_permalink(), $list ) ) :
- ?>
- <script id="spesific-dark-mode">
- (function ($) {
- $(document).ready(function() {
- // $('.jeg_dark_mode_toggle').trigger('click'); // With Switch || This Function save the dark mode cookie
- $('body').addClass('jnews-dark-mode'); // Without Switch
- $('.jeg_dark_mode_toggle').prop('checked', true); // Use this if you use Without Switch
- })
- })(jQuery)
- </script>
- <?php
- endif;
- }
- add_action( 'wp_head', 'add_dark_mode_for_spesific_page' );
Add Comment
Please, Sign In to add comment