我正在尝试在我的应用程序中开发多个主题概念。但究竟怎么能实现它,我不知道?
到目前为止,我已经创建了多个CSS(样式表),并为用户提供了选项,以便在其中选择任何一个理想的主题。我将包括我的CSS,只是检查用户选择的主题。示例如下
if($user_theme_selected == 'basic')
{
echo '<link href="/plugins/bootstrap/css/theme-basic.css" type="text/css" rel="stylesheet"></link>';
}
else if($user_theme_selected == 'premium')
{
echo '<link href="/plugins/bootstrap/css/theme-premium.css" type="text/css" rel="stylesheet"></link>';
}
else
{
echo '<link href="/plugins/bootstrap/css/theme-default.css" type="text/css" rel="stylesheet"></link>';
}
我是否正确地在我的申请中应用多个主题?
或者有人有更好更简单的方法吗?