Skip to content

Instantly share code, notes, and snippets.

@mclarenmervin
Last active May 23, 2024 11:00
Show Gist options
  • Save mclarenmervin/747e1065ddc877cd4fa2d15473b0d522 to your computer and use it in GitHub Desktop.
Save mclarenmervin/747e1065ddc877cd4fa2d15473b0d522 to your computer and use it in GitHub Desktop.
<?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