PHP WordPress简易主题风格切换器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress简易主题风格切换器相关的知识,希望对你有一定的参考价值。
//place in php tags above DOCTYPE declaration
<?php
//Set Default style
$demo_style = "style";
//Retrieve Cookie (if exists)
if( isset($_COOKIE['your-theme-style']) ){
//Set Style
$demo_style = $_COOKIE['your-theme-style'];
}
//Retrieve Style form URL
if( isset($_GET['style'])){
//Set Style
$demo_style = $_GET['style'];
//Set cookie
setcookie('your-theme-style', $demo_style);
} ?>
// Put stylesheet link in head
<link href="<?php bloginfo('stylesheet_directory'); ?>/<?php echo $demo_style; ?>.css" rel="stylesheet" type="text/css" media="screen" />
//links in theme page
http://www.yoursite.com/yourtheme/?style=style
http://www.yoursite.com/yourtheme/?style=another_style
http://www.yoursite.com/yourtheme/?style=yet_another_style
以上是关于PHP WordPress简易主题风格切换器的主要内容,如果未能解决你的问题,请参考以下文章
有哪些好看的极简的 WordPress 主题
隧道通过 ngrok 剥离风格和主题的 wordpress 网站
云原生之部署wordpress博客及设置圣诞主题风格
WordPress图片主题 国人原创轻拟物风格niRvana主题
切换系统主题风格
WordPress仿iMac风格的代码高亮插件