将第二个样式表提供给页面上也使用的侧边栏插件

时间:2012-09-16 04:46:39

标签: wordpress wordpress-plugin wordpress-theming stylesheet

如何更改我在页面(模板)上使用的插件的外观,而不影响它在侧边栏上的显示方式?这是我在该模板上使用的以下php

<?php
/*
Template Name: hot
*/
?>

<?php get_header(); ?>

<div class="content-title">
What's Hot
<a href="javascript: void(0);" id="m"<?php if ($_COOKIE['mode'] == 'list') echo '     class="flip"'; ?>></a>
</div>

<?php if (function_exists('wpp_get_mostpopular')) wpp_get_mostpopular(); ?>

<?php get_footer(); ?>

1 个答案:

答案 0 :(得分:0)

如果您将插件输出包装在div中,则可以直接在CSS中对其进行定位。

<div id="something-unique">
    <?php if (function_exists('wpp_get_mostpopular')) wpp_get_mostpopular(); ?>
</div>

在css中,您可以使用#something-unique启动您的选择器,仅定位模板。