如何从搜索和过滤插件搜索结果中删除页面标题“BLOG”。此页面是自动生成的。这是链接
答案 0 :(得分:0)
<p id="demo"></p> <!-- title tag that needs replaced -->
<script language="JavaScript">
<!--
function urlCheck() {
if(
window.location.href=="YOUR URL LOCATION HERE "
)
{
document.getElementsById('demo').innerHTML = "This is what I wanted !!"
}else{
document.write('<div>testing my super loaded div code sample</div>')
}
}
urlCheck() /* autoLoadFunction */
//-->
</script>