宁愿跑起来被拌倒无数次,也不愿规规矩矩走一辈子,就算跌倒也要豪迈的笑。不管梦想是什么,只有带着淡然的态度,做好当前的事情。
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' ); |
function Bing_phone_switching_theme(){ return 'Bing-Phone'; } add_filter( 'template', 'Bing_phone_switching_theme' ); add_filter( 'stylesheet', 'Bing_phone_switching_theme' );
直接给两个 filter 返回主题目录名字即可实现代码更换主题,代码不执行的时候也就会使用手动选择的主题。
以上就是WordPress 用代码临时更换主题。深爱总是败在猜疑然后分离。更多关于WordPress 用代码临时更换主题请关注haodaima.com其它相关文章!