0
我將此代碼插入到我的一個塊中。將圖像鏈接到發佈的URL沒有指向
<div data-content="FOR GIRLS" class="image">
<img src="path_to_image"
alt="" />
</div>
<p></p>
<div data-content="FOR BOYS" class="image">
<img src="path_to_image"
alt="" />
</div>
tryed到圖像信息的鏈接網址,以這樣的方式
<div data-content="FOR GIRLS" class="image">
<a href="link_to_post"><img src="path_to_image"
alt="" /></a>
</div>
<p></p>
<div data-content="FOR BOYS" class="image">
<a href="link_to_post"><img src="path_to_image"
alt="" /></a>
</div>
但當保存更改圖像仍未無處掛..
這是CSS的圖像類:
.image img {
width:100%;
vertical-align:top;
height:95%;
}
.image:after, .image:before {
position:absolute;
opacity:0;
transition: all 0.5s;
-webkit-transition: all 0.5s;
}
.image:after {
content:'\A';
width:100%; height:100%;
top:0; left:0;
background:rgba(0,0,0,0.6);
}
.image:before {
content: attr(data-content);
width:100%;
color:#fff;
z-index:1;
bottom:0;
padding:0px 10px;
text-align:center;
background:black;
box-sizing:border-box;
-moz-box-sizing:border-box;
padding-bottom: 5px;
}
.image:hover:after, .image:hover:before {
opacity:1;
}
我不知道什麼是錯的,爲什麼我無法以這種方式鏈接圖像。一些技巧?
我看你在這裏使用WordPress的標籤。你在什麼職位類型鏈接到你的文章?它是單個帖子/頁面/附件頁面嗎?每幅圖像的目標鏈接是什麼? –
需要指向類別產品URL。 – DrMTR