我有一个带有标题图像的TwentyTwelve的Wordpress子主题,我想放置另一个较小的图像,在标题图像中心有一个超链接。
---------------------------------------------------------------------
| 1 |
| ----- ----- |
| | 2 | | 3 | |
| ----- ----- |
| |
---------------------------------------------------------------------
从上图中,我[1]是主站点的链接(标准来自Twetwelve),我想添加[2]和[3]作为图像和超链接。关于我如何做到这一点的任何建议?我刚刚开始学习主题。提前谢谢!
答案 0 :(得分:1)
如果有人想要这样做,我找到了解决方案。在我的header.php
中,我在</header>
:
<div style="position:relative; visibility:show; left: 50%; top: -<?php echo get_custom_header()->height/2; ?>px; z-index:2; >
<a href="http://www.google.com" target="_blank"><img src="image" ></a><br>
</div>