0
我需要將圖像,而不是灰色的佔位符圖像放在我的主題與Wordpress與bootstrap template.How我可以自動做? 請問,你可以附上有關此信息的鏈接嗎?如何放置圖像,而不是佔位符wordpress與引導
我需要將圖像,而不是灰色的佔位符圖像放在我的主題與Wordpress與bootstrap template.How我可以自動做? 請問,你可以附上有關此信息的鏈接嗎?如何放置圖像,而不是佔位符wordpress與引導
我認爲這會幫助你,但這個解決方案中使用jQuery的,在你使用這個主題到您的網站
$('.member a').each(function() {
var text = $(this).text();
if(text == 'Unlock'){
$(this).html(text.replace('Unlock', "<img src='"+templateUrl+"/image/unblck.png'"+" />"));
}else{
$(this).html(text.replace('lock', "<img src='"+templateUrl+"/image/blck.png'"+" />"));
}
});
你能提供的鏈接?或代碼示例,如果脫機工作。 – Junaid