Setting Cookies
Solution with cookie [wordpress] You will need jQuery cookie plugin. Create javascript file “themechanger.js”: (function($){ var theme = $.cookie(“styles”); var themehref = document.getElementById(theme_styles.rel_id); setTheme = function(mode){ if (theme == mode) return; if (mode == ‘light’) { $.cookie(‘styles’, mode); themehref.href = theme_styles.light; } else if (mode == ‘dark’) { $.cookie(‘styles’, mode); themehref.href = theme_styles.dark; } } … Read more