WordPress 很多时候我们需要根据条件来选择不同的主题,比如手机端使用手机版主题,低版本 IE 使用可以兼容 IE 的主题等等,这些都需要通过 PHP 代码根据条件临时更换主题,下面的代码可以实现这一功能。
function Bing_phone_switching_theme(){ return 'Bing-Phone'; } add_filter( 'template', 'Bing_phone_switching_theme' ); add_filter( 'stylesheet', 'Bing_phone_switching_theme' ); |
直接给两个 filter 返回主题目录名字即可实现代码更换主题,代码不执行的时候也就会使用手动选择的主题。
来源:
https://www.wpdaxue.com/switching-theme-filter.html