Advertisement
arie_cristianD

dark mode shortcode

Jun 22nd, 2025
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. function juice_dark_mode_toggle_shortcode() {
  2.     ob_start();
  3.     $checked = isset( $_COOKIE['darkmode'] ) && $_COOKIE['darkmode'] === 'true' ? 'checked' : '';
  4.     ?>
  5.     <div class="jeg_nav_item jeg_dark_mode">
  6.         <label class="dark_mode_switch">
  7.             <input aria-label="Dark mode toggle" type="checkbox" class="jeg_dark_mode_toggle" <?php echo $checked; ?>>
  8.             <span class="slider round"></span>
  9.         </label>
  10.     </div>
  11.     <?php
  12.     return ob_get_clean();
  13. }
  14. add_shortcode( 'juice_dark_toggle', 'juice_dark_mode_toggle_shortcode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement