0

我试图在除 Wordpress 网站主页之外的所有页面上放置一个“返回主页”按钮。我已成功将项目放置在所有页面上,但无法弄清楚如何从主页中删除它。我知道我可能需要使用条件标签,但并没有太多地使用它们。

这是我在 header.php 中使用的代码:

<div class="outer"><a href="http://s416809079.onlinehome.us/"><img src="http://theshalomimaginative.com/testsite/wp-content/themes/pilot-fish/images/Untitled-1.png"/></a></div>

我需要使用什么才能使图像不在主页上?

任何有关如何做到这一点的帮助都会很棒!谢谢!

这是该网站的链接: http: //s416809079.onlinehome.us/

4

2 回答 2

1

使用is_home()is_front_page()。哪个有效取决于您的主题和配置的一些特性。你会有:

<?php
if (!is_home()) { ?>
    <div class="outer"><a href="http://s416809079.onlinehome.us/"><img src="http://theshalomimaginative.com/testsite/wp-content/themes/pilot-fish/images/Untitled-1.png"/></a></div><?php
} ?>

或与is_front_page().

于 2012-10-14T19:28:04.973 回答
0

您应该更改 CSS 文件中属性的参数 CSS 数据.outer

div.outer img
{
    width: 300px;
    height: 300px;
    float: left;
    left: 10px;
    top: 10px;
}
于 2012-10-14T19:26:21.903 回答