WordPress 很多时候我们需要根据条件来选择不同的主题,比如手机端使用手机版主题,低版本 IE 使用可以兼容 IE 的主题等等,这些都需要通过 PHP 代码根据条件临时更换主题,下面的代码可以实现这一功能。
1 2 3 4 5 |
function Bing_phone_switching_theme(){ return 'Bing-Phone'; } add_filter( 'template', 'Bing_phone_switching_theme' ); add_filter( 'stylesheet', 'Bing_phone_switching_theme' |