WordPress简易主题样式切换程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress简易主题样式切换程序相关的知识,希望对你有一定的参考价值。

Easiest way to switch theme styles for WordPress demos.
  1. //place in php tags above DOCTYPE declaration
  2. <?php
  3.  
  4. //Set Default style
  5. $demo_style = "style";
  6.  
  7. //Retrieve Cookie (if exists)
  8. if( isset($_COOKIE['your-theme-style']) ){
  9.  
  10. //Set Style
  11. $demo_style = $_COOKIE['your-theme-style'];
  12.  
  13. }
  14.  
  15. //Retrieve Style form URL
  16. if( isset($_GET['style'])){
  17.  
  18. //Set Style
  19. $demo_style = $_GET['style'];
  20.  
  21. //Set cookie
  22. setcookie('your-theme-style', $demo_style);
  23.  
  24. } ?>
  25.  
  26.  
  27. // Put stylesheet link in head
  28. <link href="<?php bloginfo('stylesheet_directory'); ?>/<?php echo $demo_style; ?>.css" rel="stylesheet" type="text/css" media="screen" />
  29.  
  30.  
  31. //links in theme page
  32. http://www.yoursite.com/yourtheme/?style=style
  33. http://www.yoursite.com/yourtheme/?style=another_style
  34. http://www.yoursite.com/yourtheme/?style=yet_another_style

以上是关于WordPress简易主题样式切换程序的主要内容,如果未能解决你的问题,请参考以下文章

PHP WordPress条件为主页SlideDeck主题代码片段

Tailwind 覆盖了 wordpress 主题样式

markdown WordPress主题参考,如何,片段,存储库说明

Rails 应用程序中的主题

Cant 样式 ul 列表(bootstrap 4,wordpress 主题)

WordPress中的主题编辑器样式表文件编辑器错误