arie_cristianD

custom darkmode shortcode with 2 text

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