加载具有依赖于页面视图的动态值的样式表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加载具有依赖于页面视图的动态值的样式表相关的知识,希望对你有一定的参考价值。
Sets the sidebar photo appropriate for a section of the site by determining the parent Page of the subpage.
/*** file: header.php ******************************/ <link rel="stylesheet" type="text/css" media="screen" href="<?php //Import stylesheet for the different pages print getdir().'/home.css'; } else { echo getdir().'/sub.css.php?p='; print 'blog'; else { $post_parent = get_post($post->post_parent); print $post_parent->post_name; } } ?>" /> /*** file: sub.css.php ******************************/ div#sidebar_photo { background-image: url("images/sidebar_photo<?php switch ($_REQUEST['p']) { case 'about': print '4'; break; case 'blog': print '5'; break; case 'team': print '1'; break; case 'products': print '6'; break; case 'howtobuy': print '3'; break; case 'spreadtheword': print '2'; break; case 'join': print '7'; break; case 'share': print '8'; break; default: print '1'; break; } } ?>.jpg"); }
以上是关于加载具有依赖于页面视图的动态值的样式表的主要内容,如果未能解决你的问题,请参考以下文章