Last active
May 23, 2024 11:00
-
-
Save mclarenmervin/747e1065ddc877cd4fa2d15473b0d522 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Change Active Theme By Code | |
add_filter( 'template', 'mervin_change_theme' ); | |
add_filter( 'option_template', 'mervin_change_theme' ); | |
add_filter( 'option_stylesheet', 'mervin_change_theme' ); | |
function mervin_change_theme($theme) | |
{ | |
$theme = 'storefront'; | |
return $theme; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment