Advertisement
arie_cristianD

custom darkmode shortcode with label

Jun 29th, 2025
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. function custom_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 custom-dark-mode">
  6.         <h3>Dark Mode</h3>
  7.         <label class="dark_mode_switch">
  8.             <input aria-label="Dark mode toggle" type="checkbox" class="jeg_dark_mode_toggle" <?php echo $checked; ?>>
  9.             <span class="slider round"></span>
  10.         </label>
  11.     </div>
  12.     <?php
  13.     return ob_get_clean();
  14. }
  15. add_shortcode( 'custom_dark_toggle', 'custom_dark_mode_toggle_shortcode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement