如何更改我在页面(模板)上使用的插件的外观,而不影响它在侧边栏上的显示方式?这是我在该模板上使用的以下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(); ?>
答案 0 :(得分:0)
如果您将插件输出包装在div中,则可以直接在CSS中对其进行定位。
<div id="something-unique">
<?php if (function_exists('wpp_get_mostpopular')) wpp_get_mostpopular(); ?>
</div>
在css中,您可以使用#something-unique
启动您的选择器,仅定位模板。