Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function juice_dark_mode_toggle_shortcode() {
- ob_start();
- $checked = isset( $_COOKIE['darkmode'] ) && $_COOKIE['darkmode'] === 'true' ? 'checked' : '';
- ?>
- <div class="jeg_nav_item jeg_dark_mode">
- <label class="dark_mode_switch">
- <input aria-label="Dark mode toggle" type="checkbox" class="jeg_dark_mode_toggle" <?php echo $checked; ?>>
- <span class="slider round"></span>
- </label>
- </div>
- <?php
- return ob_get_clean();
- }
- add_shortcode( 'juice_dark_toggle', 'juice_dark_mode_toggle_shortcode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement