0

我有一个带有标题图像的 TwentyTwelve 的 Wordpress 子主题,我想放置另一个较小的图像,其中超链接位于标题图像的中心。

---------------------------------------------------------------------
| 1                                                                 |
|                            -----    -----                         |
|                            | 2 |    | 3 |                         |
|                            -----    -----                         |
|                                                                   |
---------------------------------------------------------------------

从上图中,我有 [1] 是指向主站点的链接(标准从 212),我想添加 [2] 和 [3] 作为图像和超链接。关于我将如何做到这一点的任何建议?我刚开始学习主题。提前致谢!

4

1 回答 1

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>
于 2013-03-09T22:48:44.877 回答