如何在WordPress中以编程方式设置主题?

时间:2015-06-12 05:45:54

标签: php wordpress wordpress-theming

我的情况就像我在我的php网站中使用多个主题并且还集成了一个wordpress博客。

例如,这是我的网站网址:http://example.com

我希望通过传递查询参数来切换主题:

http://example.com?mytheme=red_theme
http://example.com?mytheme=blue_theme
etc.

目前我在WordPress中激活的主题与blue_theme类似,我的WordPress博客网址如下:

http://example.com/blog?mytheme=red_theme

例如:red_theme应该像预览一样显示。

否则,如果我浏览此网址:

http://example.com/blog

然后应显示默认主题(blue_theme)。

我可以在核心PHP中调整它,但我不知道如何使用WordPress。

1 个答案:

答案 0 :(得分:3)

在WORDPRESS中,您可以设置主题,基于设备,如移动设备上的不同主题和桌面上的不同主题。在默认主题的functions.php中写下以下代码

Peripheral