怎么让POWER V5主题 文章页底部出现的三个广告框。在页面也出现
footer.php文件里
<?php if (is_home()&&!is_paged()) : ?>
<aside id="footer_box">
<div id="sponsor">
<a href="http://faq.wopus.org" target="_blank"><img src="<?php bloginfo('template_directory'); ?>/images/faq_side.png" width="250" height="100" alt="日本VPS主机" title="日本VPS主机"></a>
<a style="margin:0 20px;" href="http://idc.wopus.org/host/vps/" target="_blank"><img src="<?php bloginfo('template_directory'); ?>/images/vps_japan.jpg" width="250" height="100" alt="WordPress问答" title="WordPress问答"></a>
<a href="http://reeoo.com" target="_blank"><img src="<?php bloginfo('template_directory'); ?>/images/reeoo.jpg" width="250" height="100" alt="精美网页设计欣赏" title="精美网页设计欣赏"></a>
</div>
<div id="linkcat"><?php wp_list_bookmarks('categorize=0&title_li=0&before='); ?></div>
</aside>
<?php endif; ?>
去掉最开始的 <?php if (is_home()&&!is_paged()) : ?> 以及最后的 <?php endif; ?> 就可以让这个底部在整站的所有页面里显示。
明白了 就是把首页判断给去掉