WordPress小部件区域链接仅在主页工作
以下是wootique主题页脚1小部件区域中的代码。链接可以在主页上正常工作,但当任何链接再次从页面上单击时,它会在页面的URL页面上重复,并且会显示页面未找到。单击任何链接时会发生这种情况。
以下是我在小工具页脚1区域中放置的代码:
<div id="parent-footer">
<a href ="XXXXXXXXXX.com/product-gallery/"><div id="first">Product Gallery</div></a>
<a href ="XXXXXXXXXX.com/blog/"><div id="second">Blog</div></a>
<a href ="XXXXXXXXXX.com/returns/"> <div id="third">Return Policy</div>
</div></a>
<style>
#parent-footer {
width: 200%;
white-space: nowrap;
}
#parent-footer div{
display: inline-block;
width: 33.3%;
color: #5BB191;
margin-left: 105px;
padding: -60px;
}
#first{
margin-right: 20px;
}
</style>
答案 0 :(得分:0)
如果网址重复如www.xxx.com/something/www.xxx.com/something,问题可能在于它将网址解释为相对网址。将http://(如果您在安全链接上运行,则为https)添加到网址。